-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
30 lines (30 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Responsive Login Form Desing</title>
<link rel="stylesheet" href="style.css" type="text/css"/>
</head>
<body>
<div class="container">
<div class="signup">
<h1>Sign Up</h1>
<h3>Please fill in this form to create an account.</h3>
<form>
<label>First Name</label>
<input type="name" required>
<label>Last Name</label>
<input type="name">
<label>Email</label>
<input type="email" required>
<label>Password</label>
<input type="password" required>
<label>Confirm password</label>
<input type="password" required>
<input type="button" value="Sign Up" class="button" >
</form>
</div>
</div>
<p>Already have an account <a href="#">Sign In.</a></p>
</body>
</html>