-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathprofilet-test.html
129 lines (120 loc) · 5.31 KB
/
profilet-test.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Nerd Home</title>
</head>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous" />
<link rel="stylesheet" href="assets/CSS/style.CSS" />
<!-- <main class="container-fluid" > -->
<header class='profilelogo' id="headerbox">
<img src="assets/images/EF.nerds.transparent.png" height=150px, display=flex, alt="Efficiency Nerds Logo" />
</header>
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand" href="#">Welcome Nerd!</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav" id="toggle-elemen">
<p>Choose Your Profile Style</p>
<label display:inline-block,="500px">🦄</label>
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" role="switch" id="toggle">
<label class="form-check-label" for="toggle">🦖</label>
</div>
</div>
</div>
</div>
</nav>
<body class="container-fluid" style="min-height: 100vh;">
<article class="row" id="full-profile">
<aside class="col-sm-6 text-center" id="profile-overview">
<img class="img-fluid filler-pic" src="assets/images/sebastian.jpg" alt="small white dog in superman shirt with backpack"><br>
<input type="text" id="image-url" placeholder="Enter image URL" />
<button id="add-image">Add Profile Image</button>
<ul style="list-style-type: none">
<li>
<h4 class="display-5" id="username">username</h4>
</li>
<li id="pronouns">Pronouns</li>
<li id="age-range">Age Range</li>
<li id="sun-sign">Sun Sign</li>
</aside>
<section class="col-sm-6 text-center" id="right-profile">
<h3 class="display-6">About me</h3>
<p id="about-me">
</p>
<div class="stickersheetlight">
<img src="./assets/images/StickerSheet-Light.png" class="img-fluid" height=300px, alt="Light Sticker Sheet">
</div>
<div class="stickersheetdark">
<img src="./assets/images/StickerSheet-Dark.png" class="img-fluid" height=300px, alt="Dark Sticker Sheet" />
</div>
</section>
</article>
<article class="row text-center" id="fun-fact">
<h3 class="display-6">Nerdy Fun Fact</h3>
<p id="nerdy-fact">Fun fact goes here</p>
</article>
<article class="row text-center" id="tools-bar">
<h3 class="display-6">Efficiency Nerd Tools</h3>
</article>
<article class="row" id="all-tools">
<section class="col-sm-6" id="todo-feature">
<form id="todo-form" method="POST">
<label class="display-" for="todo-text">My To-Do List </label><br>
<input type="text" placeholder="I need to..." name="todo-text" id="todo-text" />
</form>
<ul id="todo-list"></ul>
</section>
<div class="col-sm-6 text-center">
<h3 class="display-6">Let us Pick Your Task!</h3>
<section></section><br>
<button id="randomize">Randomize!</button><br>
<p></p>
<h1 id="randomTodo"></h1>
</div>
<article class="timer">
<section class="col text-center">
<h4 class="display-5"> Pomodoro</h4>
<div id="tomatotimer">
<img class="img-fluid tomatopic" src="./assets/images/TomatoTimer.transparent.png" height=50px, alt="Tomato Timer" />
<h3><div id="timer">20:00 mins</div></h3>
</div>
<button onclick="startTimer()">Start Timer</button>
<Button onclick="stopTimer()" type="button" data-bs-toggle="modal" data-bs-target="#exampleModal">Stop
Timer</Button>
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="exampleModalLabel">Woohoo!</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
You did it!
</div>
<div class="modal-footer">
<button type="button" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</section>
</article>
</body>
<footer class="container-fluid text-center">
Created by Efficiency Nerds: Dafne, Molly & Usama 2024
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
<script src="assets/JS/to-do.js"></script>
<script src="assets/JS/profile-render.js"></script>
</body>
<!-- </main> -->
</html>