-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (69 loc) · 2.78 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Diceware Passphrase Generator</title>
<link rel="shortcut icon" href="./images/favicon.ico">
<link rel="stylesheet" href="./style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/bigdecimal/0.6.1/bigdecimal.min.js" integrity="sha512-H7H22oJYCz3pdqoyFZQFyaaSJ6zr7MCQnyuwdAbgVtjAfQ4D+3YRt6QxG4PTviWSbhBrnvILHBxwhwnjnULG8A==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
</head>
<body>
<div class="full-page">
<div class="heading">
<div class="title">
<h1>Diceware Passphrase Generator</h1>
</div>
</div>
<div class="dropdown">
<div class="form1">
<form>
<label for="languages">Choose a Language:</label><br>
<select id="languages" name="languages" class="abc">
<option value="chinese">Chinese(中国人)</option>
<option value="devanagari">Devnagari(देवनागरी)</option>
<option value="english" selected="selected">English</option>
<option value="french">French(français)</option>
<option value="german">German(deutsch)</option>
<option value="greek">Greek(ελληνικά)</option>
<option value="hebrew">Hebrew(עִברִית)</option>
<option value="hinglish">Hinglish(Indian)</option>
<option value="latin">Modern Latin</option>
<option value="punjabi">Punjabi(ਪੰਜਾਬੀ)</option>
<option value="russian">Russian(Русский)</option>
<option value="spanish">Spanish(Español)</option>
</select>
</form>
</div>
<div class="form2">
<form>
<label for="lan">Choose Length:</label><br>
<input class="str" id="num" type="number" min="1" autocomplete="off" required value="5">
<input class="select" id="submit" type="submit" value="Generate" >
</form>
</div>
</div>
<div class="typewriter">
<h2>Generated Passphrase: </h2>
<h1 id = "finalPass"></h1>
</div>
<div class="entropy">
<div>
<h2>Entropy:</h2>
<h1 id = "finalEntropy"></h1>
</div>
<div><h2>Possible Combinations: </h2>
<h1 id = "finalCombo"></h1>
</div>
</div>
</div>
<footer>
<div class="footer-container">
<p> 🎲Diceware Passphrase Generator🎲</p>
<p>Developed by: <a href ="https://www.linkedin.com/in/sachinlodhi/"> Sachin</a> and <a href="https://www.linkedin.com/in/palak-gontiya-72748725a/"> Palak</a></p>
</div>
</footer>
<script src="./script.js"></script>
</body>
</html>