-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (66 loc) · 3.06 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="pt-br">
<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="css/reset.css">
<link rel="stylesheet" href="css/homescreen.css">
<link rel="stylesheet" href="css/quizscreen.css">
<link rel="stylesheet" href="css/createquizz.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" type="image/png" href="https://www.google.com/s2/u/0/favicons?domain=www.buzzfeed.com.br/">
<title>BuzzQuizz</title>
<meta name="description" content="">
<meta name="keywords" content="web design, web development, css, html, buzzfeed, quizz" />
<meta name="author" content="Gabriel Neves and Thiago Wirz">
<script type="module" src="https://unpkg.com/ionicons@5.4.0/dist/ionicons/ionicons.esm.js"></script>
<script nomodule="" src="https://unpkg.com/ionicons@5.4.0/dist/ionicons/ionicons.js"></script>
</head>
<body>
<header>
<h1 onclick="reloadPage()">BuzzQuizz</h1>
</header>
<div class="homescreen">
<div class="list-title-container hidden">
<h2>Seus Quizzes</h2>
<button name="create-new-quiz" onclick="openQuizCreation()" data-identifier="create-quizz"><ion-icon name="add-circle"></ion-icon></button>
</div>
<ul class="quiz-list user" data-identifier="user-quizzes">
<div class="empty-list">
<p>Você não criou nenhum quizz ainda :(</p>
<button name="create-first-new-quiz" onclick="openQuizCreation()" data-identifier="create-quizz">Criar quizz</button>
</div>
</ul>
<h2>Todos os Quizzes</h2>
<ul class="quiz-list all" data-identifier="general-quizzes">
</ul>
</div>
<div class="quizscreen hidden">
</div>
<div class="quizz-create hidden">
<div class="first-step">
<h2>Comece pelo começo</h2>
<div class="info-box">
<input type="text" placeholder="Titulo do seu quizz" class="quizz-title">
<input type="text" placeholder="URL da imagem do seu quizz" class="quizz-img">
<input type="number" placeholder="Quantidade de perguntas do quizz" class="number-of-questions">
<input type="number" placeholder="Quantidade de níveis do quizz" class="number-of-results">
</div>
<button onclick="confirmInfo()">Prosseguir pra criar perguntas</button>
</div>
<ul class="second-step hidden">
<h2>Crie suas perguntas</h2>
</ul>
<ul class="third-step hidden">
<h2>Agora, decida os níveis</h2>
</ul>
<div class="final hidden">
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script type="text/javascript" src="js/scripts.js"></script>
<script type="text/javascript" src="js/homescreen.js"></script>
<script type="text/javascript" src="js/quizz-creation.js"></script>
</body>
</html>