forked from fac-23/week4-milly-paolo-orian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
180 lines (167 loc) · 4.7 KB
/
template.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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<!-- HOMEPAGE -->
<!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" />
<link rel="stylesheet" href="style.css" />
<title>Pets App</title>
</head>
<body>
<div class="wrapper">
<h1>Pet App</h1>
<img class="logo" src="#" alt="Pets App Logo" />
<div class="links">
<a href="/signUp" aria-label="Click this link to sign up">Sign Up</a>
<a href="/logIn" aria-label="Click this link to log in">Log in</a>
</div>
</div>
</body>
</html>
<!-- SIGN UP -->
<!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" />
<link rel="stylesheet" href="style.css" />
<title>Pets App Sign Up</title>
</head>
<body>
<div class="wrapper">
<h1>Pet App Sign Up</h1>
<div class="links">
<a href="/" aria-label="Return to Home Page">Return to Home Page</a>
</div>
<form method="POST" action="/sign-up">
<label for="username">Username</label>
<input
name="username"
id="username"
type="text"
aria-label="Enter your username"
/>
<label for="email">Email</label>
<input
name="email"
id="email"
type="email"
aria-label="Enter your email"
/>
<label for="password">Password</label>
<input
name="password"
id="password"
type="password"
aria-label="Enter your password"
/>
<button type="submit" aria-label="Click button to Submit">
Submit
</button>
</form>
</div>
</body>
</html>
<!-- LOG IN -->
<!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" />
<link rel="stylesheet" href="style.css" />
<title>Pets App Log In</title>
</head>
<body>
<div class="wrapper">
<h1>Pet App Log In</h1>
<div class="links">
<a href="/" aria-label="Return to Home Page">Return to Home Page</a>
</div>
<form method="POST" action="/log-in">
<label for="email">Email</label>
<input
name="email"
id="email"
type="email"
aria-label="Enter your email"
/>
<label for="password">Password</label>
<input
name="password"
id="password"
type="password"
aria-label="Enter your password"
/>
<button type="submit" aria-label="Click button to Submit">
Submit
</button>
</form>
</div>
</body>
</html>
<!-- PROFILE -->
<!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" />
<link rel="stylesheet" href="style.css" />
<title>Pets App Profile</title>
</head>
<body>
<div class="wrapper">
<h1>Hello email</h1>
<div class="links">
<a href="/" aria-label="Return to Home Page">Return to Home Page</a>
<form method="POST" action="/log-out">
<button type="submit">Log Out</button>
</form>
</div>
<form enctype="multipart/form-data" method="POST" action="/add-post">
<label for="caption">Caption your pet</label>
<input
name="caption"
id="caption"
type="text"
aria-label="Caption your Pet"
/>
<label for="image">Post Image of your pet</label>
<input
name="image"
id="image"
type="file"
aria-label="Post image of your pet"
/>
<button type="submit" aria-label="Click button to Submit">
Submit
</button>
</form>
</div>
</body>
</html>
<!-- NEWS FEED -->
<!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" />
<link rel="stylesheet" href="style.css" />
<title>Pets App News Feed</title>
</head>
<body>
<div class="wrapper">
<h1>Pets App News Feed</h1>
<div class="links">
<a href="/" aria-label="Return to Home Page">Return to Home Page</a>
<a href="/profile" aria-label="Return to Profile">Return to Profile</a>
</div>
<ul>
</ul>
</div>
</body>
</html>