-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (38 loc) · 1.7 KB
/
index.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
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="form-A.css">
<title>Sign Up | Log In</title>
</head>
<body>
<section id="login">
<div id="centerpage">
<h1>Sign Up!</h1>
<form action="">
<label for="form-name">
<div>Full Name<input type="text" name="myname" id="form-name" placeholder="Full Name" required>
</div>
</label>
<label for="form-email">
<div>Email Id<input type="email" name="myemail" id="form-email" placeholder="Email ID" required>
</div>
</label>
<label for="form-mobile">
<div>Mobile Number<input type="tel" minlength="10" maxlength="10"
name="mymobile" id="form-mobile" placeholder="Mobile Number" required></div>
</label>
<label for="form-passwd">
<div>Password<input type="password" minlength="8" maxlength="8" name="mypasswd" id="form-passwd" placeholder="Password" title="Must contain 8 characters containing alphanumeric + one special symbol"
required></div>
</label>
<input type="submit" value="submit">
<input type="reset" value="reset">
</form>
<h3>Already have an account? | <a href="#">Log In</a></h3>
</div>
</section>
</body>
</html>