-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignupform.html
162 lines (162 loc) · 5.64 KB
/
signupform.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="en">
<head>
<title>Signup Form</title>
<link rel="stylesheet" href="./styles/signupform.css" />
</head>
<body>
<div class="container">
<!-- **form container start here -->
<div class="form_container">
<!-- **form head start here -->
<div class="form_head">
<img
src="https://a.ftscrt.com/static/images/def20/Fatsecret_logo.png"
alt=""
/>
<h1>My FatSecret Account</h1>
</div>
<!-- **form head ends here -->
<!-- **form body start here -->
<div class="form_body">
<form action="">
<div class="mydetails">
<h1>My Details</h1>
<div class="my_det_box">
<div class="labels">
<p>Gender :</p>
<p>Current Weight :</p>
<p>Height :</p>
<p>Date of Birth :</p>
<p>Activity Level* :</p>
</div>
<div class="values">
<div id="gender">
<input
type="radio"
value="female"
id="female"
name="_gender"
/>
<label for="female">Female</label>
<input type="radio" value="male" id="male" name="_gender" />
<label for="male">Male</label>
</div>
<div>
<input type="number" id="cur_wt" />
<p>kg</p>
<span>(switch to lb)</span>
</div>
<div>
<input type="text" id="cur_ht" />
<p>cm</p>
<span>(switch to inches)</span>
</div>
<div>
<input type="date" id="dob" />
</div>
<div>
<div>
<input
type="radio"
id="act_lvl_1"
name="activity level"
value="sedentary"
/>
<label for="act_lvl_1"> Sedentary </label>
</div>
<div>
<input
type="radio"
id="act_lvl_2"
name="activity level"
value="low_active"
/>
<label for="act_lvl_2">Low Active</label>
</div>
<div>
<input
type="radio"
id="act_lvl_3"
name="activity level"
value="active"
/>
<label for="act_lvl_3">Active</label>
</div>
<div>
<input
type="radio"
id="act_lvl_4"
name="activity level"
value="very active"
/>
<label for="act_lvl_4">Very Active</label>
</div>
</div>
<div></div>
</div>
</div>
</div>
<div class="mygoals">
<h1>My Goals</h1>
<div>
<div class="mgoal_param">
<p>Diet Goal :</p>
<p>Goal Weight :</p>
</div>
<div class="mgoal_values">
<div>
<select name="" id="deit_goal">
<option value="weight gain">Weight gain</option>
<option value="slow weight gain">Slow Weight gain</option>
<option value="current weight">
Maintain my current Weight
</option>
<option value="slow weight loss">Slow Weight loss</option>
<option value="weight loss">Weight loss</option>
</select>
</div>
<div>
<input type="number" id="goal_weight" />
<p>kg</p>
</div>
</div>
</div>
</div>
<div class="fatsecretaccount">
<h1>FatSecret Account</h1>
<div class="fatsecretaccount_box">
<div class="acc_param">
<p>Member Name:</p>
<p>Password:</p>
<p>Email Address:</p>
</div>
<div class="acc_values">
<input type="text" id="name" required />
<input type="password" id="password" required />
<input type="email" id="email" required />
</div>
</div>
</div>
<div class="submit">
<div class="terms">
<p>
By clicking 'Next', you agree to the FatSecret
<a href="">Terms and Conditions</a> and
<a href="">Privacy Policy</a>
</p>
</div>
<div class="btn_box">
<button id="cancel">Cancel</button>
<button type="submit" id="submit">Next</button>
</div>
</div>
</form>
</div>
<!-- **form body ends here -->
</div>
<!-- **form container ends here -->
</div>
</body>
</html>
<script src="./scripts/signupform.js"></script>