-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignUp.html
31 lines (29 loc) · 961 Bytes
/
signUp.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
<!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">
<title>Login</title>
<link rel="stylesheet" href="css/signUp.css">
</head>
<body>
<div class="LoginBlock">
<!-- white background border -->
</div>
<div class="LoginInput">
<h1>
<p>
Create New Account
</p>
</h1>
<input type="text" placeholder="First Name" class="Fname">
<input type="text" placeholder="Last Name" class="Lname">
<input type="email" placeholder="Email" class="email">
<input type="email" placeholder="Confirm Email" class="cemail">
<input type="password" placeholder="Password" class="Pass">
<button type="submit" class="create">Create new Account</button>
</input>
</div>
</body>
</html>