-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsignup.html
48 lines (45 loc) · 1.86 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!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>Sign up</title>
<link rel="stylesheet" href="signup.css">
</head>
<body>
<div id="container">
<div id="image">
<img src="https://allhoursproductb0b1.blob.core.windows.net/static-files/myhours_logo_icon.svg" alt="">
</div>
<div id="formdiv">
<form action="">
<h3>Welcome to My Hours</h3>
<label for="name"> <b> FULL NAME</b></label><br>
<label for="" id="para">So we know what to call you in the app</label>
<div>
<input type="text" id="name">
<p id="warn3" style="line-height: 0;font-size: small;color: rgb(218, 14, 14);"></p>
</div>
<label for="email"> <b>EMAIL</b> </label><br>
<label for="" id="para">You will use this email to login</label>
<div>
<input type="email" id="email">
<p id="warn2" style="line-height: 0;font-size: small;color: rgb(218, 14, 14);"></p>
</div>
<label for="password"> <b>PASSWORD</b> </label>
<div>
<input type="Password"
id="password" placeholder="Set password">
<p id="warn1" style="line-height: 0;font-size: small;color: rgb(218, 14, 14);"></p>
</div>
<p id="term">By signing up you agree to the <a href="#">Terms of Use</a> </p>
<!-- <div id="btn"> -->
<button id="btn" >Next</button>
<!-- </div> -->
</form>
</div>
</div>
</body>
</html>
<script src="signup.js"></script>