-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSignUpParent.html
127 lines (85 loc) · 3.35 KB
/
SignUpParent.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
<!DOCTYPE html>
<html>
<head>
<link rel="Stylesheet" href="css-styles.css">
<title>weCareSignUpParent</title>
</head>
<!--bar-->
<nav>
<ul>
<li><img src="../FinalProject/photo/logo.png"></img></li>
</ul>
</nav>
<!--bar-->
<div class="form-div signUpPH">
<h2 class="sign-lable">SignUp</h2>
<form >
<p><label for="FName" class="name" >First Name</label>
<input type="text" name="FName"class="fill-field box" required></p>
<p><label for="LName" class="name">Last Name</label>
<input type="text" name="LName" class="fill-field box"required></p>
<p><label for="Email" class="name">Email</label>
<input type="email" name="Email"class="fill-field box" required></p>
<p><label for="Pass"class="name"> Password</label>
<input type="password" name="Pass"class="fill-field box" required ></p>
<p><label for="Pass2" class="name"> Re-Enter Password</label>
<input type="password" name="Pass2" class="fill-field box" required ></p>
<p><label class="name">Upload Photo</label>
<input type="file" class="fill-field box"></p>
<p><label for="Phone"class="name" >Phone Number</label>
<input type="tel" class="fill-field box" pattern="[0]{1}[5]{1}[0-9]{7}" required></p>
<p><label for="city" required class="name">City
<select class="fill-field box" name="city" >
<option value="Riyadh" >Riyadh</option>
<option value="Jeddah">Jeddah</option>
<option value="Makkah">Makkah</option>
<option value="Khobar">Khobar</option>
<option value="Dammam">Dammam</option>
</select></label></p>
<p><label for="location"class="name" >Location</label>
<input type="text" name="location" class="fill-field box" required></p>
<p>
<input type="submit" class="button box signUp-button " value="SignUp">
</p>
</form>
</div>
<footer class="footer-distributed">
<div class="footer-left">
<h3>We<span>Care</span></h3>
<p class="footer-company-name">We Care © 2022</p>
</div>
<div class="footer-center">
<div>
<i class="fa fa-map-marker"></i>
<p><span>Altahlia Street</span> Riyadh</p>
</div>
<div>
<i class="fa fa-phone"></i>
<p>+966 5553332229</p>
</div>
<div>
<i class="fa fa-envelope"></i>
<p><a href="mailto:support@WeCare.com">support@WeCare.com</a></p>
</div>
</div>
<div class="footer-right">
<p class="footer-company-about">
<span>About the company</span>
Founded in 2022,WeCare is born out of the desire to make it simpler for
parents to find great babysitters.
</p>
<div class="footer-icons">
<a href="Wecare.facebook.com" target="_blank">
<img src="../FinalProject/photo/facebook-icon.png" class="footer-icons">
</a>
<a href="Wecare.twitter.com" target="_blank">
<img src="../FinalProject/photo/twitter-icon.png" class="footer-icons">
</a>
<a href="Wecare.instagram" target="_blank">
<img src="../FinalProject/photo/instagram-icon.png" class="footer-icons">
</a>
</div>
</div>
</footer>
</body>
</html>