-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogged-in.html
144 lines (135 loc) · 4.84 KB
/
logged-in.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
<!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" />
<title>Quizzer</title>
<link rel="stylesheet" href="css/general.css" />
<link rel="stylesheet" href="css/logged-in-header.css" />
<link rel="stylesheet" href="css/logged-in.css" />
<link rel="stylesheet" href="css/logged-in-queries.css" />
<link
href="https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
</head>
<body class="gray-theme-color">
<div class="content-container">
<button id="transparent-black-screen" class="hidden"></button>
<header id="main-header" class="header gray-theme-color">
<div id="quizzer-img-container" class="scale-up">
<a href="logged-in.html">
<img
class="logo"
alt="Quizzer logo"
src="images/Quizzer Logo OG.png"
/>
</a>
</div>
<p id="signed-in-as" class="sub-title main-font-color"></p>
<div id="menu-btn" class="menu scale-up main-font-color">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-6 h-6"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5"
/>
</svg>
</div>
</header>
<div
class="menu-container grid no-opacity menu-hidden-pos main-theme-color"
>
<header class="title theme-title main-font-color">Theme</header>
<p id="most-recent-quiz" class="main-font-color">Most Recent Quiz:</p>
<p id="recent-quiz" class="main-font-color">QUIZ</p>
<button class="scale-up play-now-btn">Begin Quiz</button>
<div class="theme-cs-bg">
<button class="white-theme scale-up"></button>
<button class="gray-theme scale-up"></button>
<button class="purple-theme scale-up"></button>
</div>
<div class="scale-up log-out-btn">Log Out</div>
</div>
<button class="transparent-black-screen no-opacity"></button>
<main>
<nav class="main-nav flex-column">
<div id="select-a-quiz-main-div">
<div
id="qsc"
class="quiz-selection-container main-theme-color-secondary"
>
<header class="title select-a-quiz main-font-color">
SELECT A QUIZ
</header>
<div class="scroll-container">
<p id="no-quizzes-text" class="main-font-color">
Looks like you haven't set up any quizzes yet.
<a
class="create-a-quiz-hyperlink main-hyperlink-color"
href="#"
>Start creating today!</a
>
</p>
</div>
<button class="scale-up new-quiz-btn hidden">New Quiz</button>
</div>
</div>
<div
id="delete-container"
class="create-a-quiz-container container main-theme-color hidden"
>
<header
id="delete-question"
class="title select-a-quiz main-font-color"
>
Are you sure
</header>
<div class="remove-quiz-btn-flex">
<button id="delete-yes" class="scale-up delete-option-btn">
Yes
</button>
<button id="delete-no" class="scale-up delete-option-btn">
No
</button>
</div>
</div>
<!-- edit a quiz container -->
<div
id="eaqc"
class="container edit-question-container main-theme-color-secondary hidden"
></div>
<!-- create a quiz container -->
<div
id="caqc"
class="create-a-quiz-container container main-theme-color-secondary hidden"
>
<header class="title create-a-quiz main-font-color">
CREATE A QUIZ
</header>
<select id="quiz-type-select">
<option value="sq">Standard Quiz</option>
<option value="mc">Multiple Choice</option>
</select>
<input
id="new-quiz-name-input"
type="text"
placeholder="Quiz Name"
/>
<button id="create-btn" class="submit-btn">Create</button>
</div>
</nav>
</main>
<script src="javascript/alert-box.js"></script>
<script type="module" src="javascript/logged-in.js"></script>
</div>
</body>
</html>