-
Notifications
You must be signed in to change notification settings - Fork 0
/
sign-up.html
36 lines (34 loc) · 1.24 KB
/
sign-up.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<center><h1>sign-up page</h1>
<br><br><br><br>
<form>
<fieldset>
<legend >sign up</legend>
<table>
<tr>
<th> <label for="Name">Name:</label></th>
<td><input type="text" id="Name" placeholder="enter your name" pattern="[a-zA-z]{3-15}" required><br></td>
</tr>
<tr>
<th><label for="password"> new Password:</label></th>
<td><input type="password" id="password" placeholder="enter your new password" required ><br></td>
</tr>
<tr>
<th><label for="password"> enter again Password:</label></th>
<td> <input type="password" id="password" placeholder="enter your password" required ><br></td>
</tr>
</table>
<input type="submit" name="submit">
<h3>create new account: <a href="login-page.html">login-page</a></h3>
</fieldset>
</form>
</center>
</body>
</html>