-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (28 loc) · 995 Bytes
/
index.html
File metadata and controls
31 lines (28 loc) · 995 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Projeto</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Classificados</title>
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<div class="container-fluid">
<div class="box">
<div class="titulo">
<h1>Acesso ao login</h1>
<hr>
</div>
<div class="row">
<div class="botoes flex-column">
<a href="http://projeto.pc/coordenador/login"><button class="btn btn-outline-danger">Coordenador</button></a>
<a href="http://projeto.pc/orientador/login"><button class="btn btn-outline-primary">Orientadores</button></a>
<a href="http://projeto.pc/aluno/login"><button class="btn btn-outline-success">Alunos</button></a>
<a href="http://projeto.pc/banca/login"><button class="btn btn-outline-secondary">Banca</button></a>
</div>
</div>
</div>
</div>
</body>
</html>