-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSign-up.html
39 lines (36 loc) · 1.11 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
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="sign-up.css"rel="stylesheet">
</head>
<body>
<form>
<div class="outer">
<div class="head">
<a href="homepage.html">X</a>
<h3>Sign up </h3>
</div>
<div class="info">
<p>What's your Name?</p>
<input type="text" placeholder="Name">
<p>What's your E-mail?</p>
<input type="text" placeholder="E-mail">
<p>Your Password?</p>
<input type="password" placeholder="password">
<p>Phone-Number</p>
<input type="text" placeholder="98xxxxxxxx">
<br>
<br>
<button type="submit">Start Your Discovery</button>
</div>
<div class="footer">
<a href="Sign-in.html">Sign in with your account</a>
<a href="forgotpassword.html">Forgot your password?</a>
</div>
</div>
</form>
</body>
</html>