-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (68 loc) · 2.32 KB
/
index.html
File metadata and controls
79 lines (68 loc) · 2.32 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Gera Passwords para PTSS</title>
<link rel="stylesheet" href="css/bootstrap.min.css" media="screen" title="no title">
<script type="text/javascript" src="jquery.min.js"></script>
<script src="clipboard.min.js"></script>
<script src="app.js" charset="utf-8"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-8 col-md-offset-2 text-center">
<h1>Gerador de Passwords para PTSS</h1>
</div>
</div>
<hr>
<div class="row">
<div class="col-xs-12 col-md-6">
<form id="getPassword" class="form-horizontal">
<div class="form-group" action="#">
<label for="niss" class="col-md-2 control-label">Niss:</label>
<div class="col-md-8">
<input type="text" class="form-control" id="nissInput"
placeholder="Insira o niss">
</div>
</div>
<div class="form-group">
<div class="col-md-offset-2 col-md-10">
<button type="submit" class="btn btn-default">Submit</button>
</div>
</div>
</form>
</div>
<div class="col-xs-12 col-md-6">
<input id="ps-nome" class="form-control" type="text"
placeholder="Nome" readonly>
<br>
<input id="ps-morada" class="form-control" type="text"
placeholder="Morada" readonly>
<br>
<input id="ps-niss" class="form-control" type="text"
placeholder="Niss" readonly>
</div>
</div> <!-- ROW -->
<br>
<br>
<div class="row">
<div class="col-xs-12 col-md-8 col-md-offset-2">
<div id="pass-alert" class="alert alert-success" role="alert">
<h2 id="pw" class="text-center">PASSWORD</h2>
</div>
<button id="copy-button" alt="Copiar para o clipboard"
class="btn btn-default"
data-clipboard-target="#pw">Copy
</button>
<!-- <div class="input-group input-group-lg">
<input type="text" class="form-control alert-success" placeholder="Password">
<span class="input-group-btn">
<button class="btn btn-default" id="Password">Copy</button>
</span>
</div> -->
</div>
</div>
</div> <!-- Container -->
</body>
</html>