-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcreate account.html
40 lines (37 loc) · 1.43 KB
/
create account.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Sign Up</title>
<link rel="stylesheet" href="css/create account.css" />
<link rel="apple-touch-icon" sizes="180x180" href="image/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="image/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="image/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="signup-box">
<h1>Sign Up</h1>
<h4>It's free and only takes a minute</h4>
<form>
<label>First Name</label>
<input type="text" placeholder="" />
<label>Last Name</label>
<input type="text" placeholder="" />
<label>Email</label>
<input type="email" placeholder="" />
<label>Password</label>
<input type="password" placeholder="" />
<label>Confirm Password</label>
<input type="password" placeholder="" />
<a href="account successful.html" class=".create" style="text-align: center; background-color: turquoise;width: 200px;height: 30px;margin-left: 135px; margin-top: 30px;color: black; text-decoration: none;">Submit</a>
</form>
</div>
<p class="para-2">
Already have an account? <a href="login.html">Login here</a>
</p>
</body>
</html>