-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcadastro.html
More file actions
45 lines (34 loc) · 1.73 KB
/
Copy pathcadastro.html
File metadata and controls
45 lines (34 loc) · 1.73 KB
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
<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">
<title>Gamefication - Recode Jr</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-3"></div>
<div class="col-md-6" style="margin-top: 25px;">
<div class="panel panel-info">
<div class="panel-heading">
<h3 class="panel-title"><center>Cadastro Gamefication</center></h3>
</div>
<div class="panel-body">
<input type="text" class="form-control" placeholder="Nome de usuário" aria-describedby="basic-addon1">
<input type="password" class="form-control" placeholder="Senha" aria-describedby="basic-addon1" style="margin-top: 15px;">
<input type="text" class="form-control" placeholder="Usuário do Habitica" aria-describedby="basic-addon1" style="margin-top: 15px;">
<input type="text" class="form-control" placeholder="Senha da API" aria-describedby="basic-addon1" style="margin-top: 15px;">
<center><button type="button" class="btn btn-default" style="margin-top: 15px;">Cadastrar</button></center>
</div>
</div>
</div>
<div class="col-md-3"></div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>