-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwelcome.html
111 lines (77 loc) · 2.66 KB
/
welcome.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
<head>
<link rel="Stylesheet" href="css-styles.css">
<title>weCare</title>
</head>
<body>
<!--bar-->
<nav>
<ul>
<li><img src="../FinalProject/photo/logo.png"></img></li>
</ul>
</nav>
<!--bar-->
<div class="container">
<div class="signin-form-container">
<form class="formlog">
<h1>Login</h1>
<input type="email" class="fill-field box" placeholder="Email" />
<input type="password"class="fill-field box" placeholder="Password" />
<p>Login As a</p>
<span>
<a href="../FinalProject/parentPage/parentPage.html" target="_blank" ><input type="button" class="button" value="Parent"></button></a>
<a href="../FinalProject/babySitterPage/babySitterPage.html" target="_blank"><input type="button" class="button" value=BabySitter></button></a></span>
<a href="#">Forgot your password?</a>
</form>
</div>
<div class="overlay-container">
<div class="overlay">
<div class="overlay-panel overlay-right">
<h1 class="h1WLS">Welcome To WeCare</h1>
<p class="pWLS">SignUp as </p>
<a href="SignUpParent.html" target="_blank">
<button class="button box">Parent </button></a>
<a href="SignupBabySitter.html" target="_blank">
<button class="button box" >Babysitter</button></a>
</div>
</div>
</div>
</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>