-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsignup.html
88 lines (80 loc) · 2.81 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!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>My Hours | Sign up</title>
<link
rel="icon"
href="https://gdm-catalog-fmapi-prod.imgix.net/ProductLogo/b5f28d17-3a80-4bf3-aa0c-82ca5cdcccf2.png?w=100&q=50"
type="image/x-icon"
/>
<link rel="stylesheet" href="./style/signup.css" />
</head>
<body>
<fieldset id="signup_fieldset">
<div id="padd_cont">
<div class="container_form">
<form action="" class="forms_all" id="form_1">
<a href="">
<img
src="https://allhoursproductb0b1.blob.core.windows.net/static-files/myhours_logo_icon.svg"
alt="myhours logo"
id="myhours_logo"
/></a>
<h2 id="welcome_text">Welcome to My Hours</h2>
<!-- name -->
<div class="details_label">
<span class="details" id="fullname">FULL NAME</span>
<p id="fullname_label" class="label_in_gray">
So we know what to call you in the app
</p>
<input type="text" id="ip_fn" class="input_box" required />
</div>
<!-- email -->
<div class="details_label">
<span class="details" id="email">EMAIL</span>
<p id="email_label" class="label_in_gray">
You will use this email to login
</p>
<input type="text" id="ip_em" class="input_box" required />
</div>
<!-- password -->
<div class="details_label">
<span class="details" id="signup_password">PASSWORD</span>
<input
type="password"
id="ip_ps"
class="input_box"
placeholder="Set password"
required
/>
</div>
<!-- terms -->
<p id="terms">
By signing up you agree to the <a href="">Terms of Use</a>
</p>
<!-- next button -->
<div id="signup-p1-btn">
<button id="next_button">Next</button>
</div>
<!-- dot logo -->
<div id="two_circles">
<span id="circle_field1"></span><span id="circle_unfield"></span>
</div>
</form>
</div>
</div>
</fieldset>
<div id="spica">
<img
id="signup_spica_logo"
src="https://allhoursproductb0b1.blob.core.windows.net/static-files/spica/logo-svg"
alt=""
/>
</div>
</body>
</html>
<!-- <script src="./component/signupnext.js" type="module"></script> -->
<script src="./script/signup.js" type="module"></script>