-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (53 loc) · 2.6 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Wins App</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="shortcut icon" type="image/x-icon" sizes="32x32" href="favicon-32x32.png">
<link rel="shortcut icon" type="image/x-icon" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<!-- Font Awesome CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Google Fonts -->
<!-- CSS -->
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="container">
<h1 class="title">Achievements App</h1>
<div class="view-logged-out" id="view-logged-out">
<button class="login-button" id="login-button">Continue with Google</button>
</div>
<div class="view-logged-in" id="view-logged-in">
<button class="logout-button" id="logout-button">Log out</button>
<h2 class="top-text">What are you proud of today/lately?</h2>
<form>
<input class="type-input" type="text" name="type" id="type-input" placeholder="Category or type">
<textarea class="win-input" placeholder="Type your win here" id="win-input" required></textarea>
<button class="save-button" type="submit" id="save-button">Save</button>
</form>
<div class="user-name" id="user-name"></div>
<h2 class="feed-title">The feed of you wins that you can put on your CV (or tell your mom)</h2>
<ul class="wins-feed" id="wins-feed">
<!-- Achievements are here -->
</ul>
</div>
<div class="bottom">
<h4>
The background photo by the
talented creator
<a target="_blank" href="https://unsplash.com/@ianstauffer?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash">
Ian Stauffer</a>
on <a target="_blank" href="https://unsplash.com/photos/man-sitting-on-mountain-cliff-facing-white-clouds-rising-one-hand-at-golden-hour-bH7kZ0yazB0?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash">
Unsplash</a>
</h4>
</div>
</div>
<script src="script.js" type="module"></script>
</body>
</html>