forked from vinnydeveloper/sorteiaai
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
63 lines (59 loc) · 2.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sorteio de Grupos</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<header>
<div class="row">
<div class="col-md-4">
<img src="assets/images/logo.png" alt="Digital House" class="logo" />
</div>
<div class="col-md-8">
<div class="row">
<div class="col-md-4">
<button id="addStudentsButton">Adicionar Alunos</button>
</div>
<div class="col-md-4">
<button id="sortOneButton">Sortear um aluno</button>
</div>
<div class="col-md-4">
<button id="sortGroupsButton">Sortear Grupos</button>
<br>
<br>
<label>Alunos por grupo: </label>
<br>
<input type="number" value="4" id="studentsByGroup">
</div>
</div>
</div>
</div>
</header>
<section id="addStudentsView" class="view">
<div class="row">
<div class="col-md-12">
<h2>Adicionar Alunos</h2>
<p>Digite e tecle enter para adicionar</p>
</div>
<div class="col-md-6">
<input id="studentName" type="text" placeholder="Digite o nome do aluno" />
</div>
<div class="col-md-6">
<ul id="studentsList"></ul>
</div>
</div>
</section>
<section id="sortGroupView" class="view hidden">
<div id="result" class="row"></div>
</section>
<section id="sortOneView" class="view hidden"></section>
<script src="assets/js/students.js"></script>
<script src="assets/js/sort.js"></script>
<script src="assets/js/app.js"></script>
</body>
</html>