forked from Subhanc/Block-Vote
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauthorization.html
More file actions
42 lines (41 loc) · 2.01 KB
/
authorization.html
File metadata and controls
42 lines (41 loc) · 2.01 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
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js "></script>
<script src="https://unpkg.com/@arkecosystem/crypto/dist/index.umd.js"></script>
<script src="authorization.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ"crossorigin="anonymous">
<link rel="stylesheet" href="ballot.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container ballot">
<!-- Navagation -->
<nav class="navbar navbar-light text-capitalize">
<div class="container-fluid">
<a class="navbar-brand" href="#">BLOCK<b class="vote">VOTE</b></a>
</div> <!-- End Container Fluid-->
</nav> <!-- End of Navbar-->
<div class="container">
<div class="jumbotron bg-light">
<h1 class="h1">Authorization Portal</h1>
<form autocomplete="off" spellcheck="false" class="">
<div class="form-group">
<h6 class = "styling">Click Below to Generate a Passphrase:</h6>
<div class="form-row">
<div class="col">
<p></p>
<!--<input id = "oranges" class="form-control text-center passphrase" type="text" placeholder="Authoization Key" readonly>-->
<!--<input type="text" class="form-control text-center passphrase" placeholder="Authorization Key">-->
</div>
</div>
</div>
<a class="btn btn-outline-dark landingButton generate-passphrase"> Generate Passphrase </a>
</form>
</div>
</div>
</div>
</body>