-
Notifications
You must be signed in to change notification settings - Fork 0
/
secretKeyGenerator.html
67 lines (45 loc) · 2.59 KB
/
secretKeyGenerator.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="public/css/styles.css">
<title>Secret Session Key Generator</title>
</head>
<body>
<div class="generator-banner padding-bottom-md padding-top-md text-upper center white-text anton-regular font-lg">
<p>Clever Movies session generator</p>
</div>
<h1 class="center poppins-light text-capitalize padding-top-md padding-bottom-md font-md">
Generate a session key that can be used with the Clever Movies website
</h1>
<section id="secretKeyGenerator">
<div class="container">
<h1 class="font-md poppins-light padding-bottom-lg center text-capitalize label">Movies Session key generator</h1>
<form class="secretKeyForm">
<label>Enter a name or a text</label>
<input type="text" name="title" class="secret-key-inputfield title poppins-light font-md" required minlength="8" maxlength="30">
<button class="white-text bold padding-top-sm session-key-btn
padding-bottom-sm text-upper">Generate session key</button>
</form>
</div>
<div class="side-bar-msg hidden">
<div class="container">
<h1 class="anton-regular">Session key</h1>
<form action="" class="session-form">
<p class="padding-top-md">Below is your secret key</p>
<p>You can now used that for your program</p>
<p class="padding-top-lg highligt">Remember to keep the key secret</p>
<textarea name="session-key" id="session-key-text-area" class="font-md poppins-light" cols="30" rows="10" readonly></textarea>
<div class="button">
<button type="button" class="button-md white-text danger-bg-color close-btn">Close</button>
<button type="button" class="button-md white-text success-bg-color copy-btn">Copy</button>
</div>
</form>
</div>
</div>
<div class="spinner"></div>
</section>
<script src="public/js/sessionKey.js" type="module"></script>
</body>
</html>