-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewlayout.html
80 lines (74 loc) · 4.3 KB
/
newlayout.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Font Awesome CDN -->
<script src="https://kit.fontawesome.com/bb4b522cee.js" crossorigin="anonymous"></script>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<title>Hello, world!</title>
</head>
<body>
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h1 class="display-4">Diceware</h1>
<p class="lead"><i>"Diceware is a method for creating passphrases, passwords, and other cryptographic variables using ordinary dice as a hardware random number generator. For each word in the passphrase, five rolls of the dice are required. The numbers from 1 to 6 that come up in the rolls are assembled as a five-digit number, e.g. 43146. That number is then used to look up a word in a word list. In the English list 43146 corresponds to munch. By generating several words in sequence, a lengthy passphrase can be constructed."</i> <a href="https://en.wikipedia.org/wiki/Diceware" target="_blank">Excerpt from Diceware Wikipedia page.</a></p>
</div>
</div>
<div class="container">
<div class="row">
<div class="col align-self-center">
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text" id="inputGroup-sizing-default">Password Length</span>
</div>
<input type="text" class="form-control" aria-label="Password Length" aria-describedby="inputGroup-sizing-default">
</div>
</div>
</div>
<div class="row">
<div class="col align-self-center">
<div class="input-group mb-3">
<div class="input-group-prepend">
<label class="input-group-text" for="inputGroupSelect01">Word List</label>
</div>
<select class="custom-select" id="inputGroupSelect01">
<option selected>Choose...</option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
</div>
</div>
</div>
<div class="row">
<div class="col align-self-center">
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text" id="inputGroup-sizing-default">Delimitter</span>
</div>
<input type="text" class="form-control" aria-label="Delimitter" aria-describedby="inputGroup-sizing-default">
</div>
</div>
</div>
<div class="row">
<div class="col align-self-center">
<div class="input-group mb-3">
<div class="input-group-prepend">
<button type="button" class="btn btn-outline-primary">Roll for Password <i class="fas fa-dice"></i></button>
</div>
<input type="text" class="form-control" aria-label="Generated Password" readonly aria-describedby="inputGroup-sizing-default">
<div class="input-group-append">
<button class="btn btn-outline-primary" type="button" id="button-addon2">Copy <i class="far fa-clipboard"></i></button>
</div>
</div>
</div>
</div>
</div>
<!-- Option 1: jQuery and Bootstrap Bundle (includes Popper) -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
</body>
</html>