generated from imd1005-web-development-winter-2023/group-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
signin.html
103 lines (77 loc) · 2.97 KB
/
signin.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Set the page title -->
<title>HungryBox</title>
<!-- Set the charset we're using to UTF-8 -->
<meta charset="UTF-8" />
<!-- Set the screens default zoom / scale to 1 -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- We are using a CSS Reset file to standardize browser default css -->
<link rel="stylesheet" href="./reset.css" />
<!-- This is where all of our awesome CSS code goes -->
<link rel="stylesheet" href="./sign.css" />
<!-- Set the Favicon -->
<link rel="icon" href="./images/favicon/Hungrybox Logo (cropped).png" type="image/svg+xml" />
</head>
<body>
<!-- Sign Up Page -->
<section class="container forms">
<nav class="navigation">
<div class="nav-bar">
<h1><a href="./main.html">HungryBox</a></h1>
<img class="nav-bar" src="images/favicon/Hungrybox_Logo(2).png" width="120">
</div>
<div class="nav-links">
<a href="recipes.html">Recipes</a>
<a href="#">Kitchen Tips</a>
<a href="#">Community</a>
<a href="#">About us</a>
<a href="#">Contact us</a>
</div>
</nav>
<div class="form signIn">
<div class="sign-in-form">
<h1 class="sign-in-title">Welcome to HungryBox</h1>
<h3 class="sign-in-subtitle">Sign In to submit reviews and your own recipes!</h3>
<form id="form" action="./signup.html">
<div class="field input">
<input type="email" id="email" class="sign-in-email" placeholder="Email" autocomplete="off">
<div class="error"></div>
</div>
<div class="field input">
<input type="password" id="password" class="sign-in-password" placeholder="Password" autocomplete="off">
<div class="error"></div>
</div>
<div class="forgot-password">
<a href="#">Forgot password?</a>
</div>
<div class="field input-btn-SignIn">
<button type="submit" class="sign-in-btn">Sign in <a href="./index.html"></a></button>
</div>
</form>
<div class="line"></div>
<div class="media">
<a href="#" class="google">
<img src="images/favicon/google-icon.png" alt="google icon" width="18" class="google-icon">
<span>Sign in with Google</span>
</a>
<a href="#" class="facebook">
<img src="images/favicon/facebook-icon.png" alt="facebook icon" width="18" class="facebook-icon">
<span>Sign in with Facebook</span>
</a>
</div>
<div class="form-link">
<p class="no-account">Don't have an account? <a href="./signup.html">Sign Up</a></p>
<p class="guest">Or continue as <a href="./main.html">guest</a></p>
</div>
</div>
</div>
</section>
<main>
<div id="app"></div>
</main>
<!-- This is where we add our awesome JavaScript code -->
<script src="./signin.js"></script>
</body>
</html>