-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (42 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="icon" href="Images/icone.png" type="image/png">
<link rel="icon" type="image/svg+xml" href="Images/icone.svg">
<link rel="icon" href="Images/icone.ico" type="image/x-icon">
<link rel="stylesheet" href="msg-hash.css"/>
<script defer src="msg-hash.js"></script>
<title>Msg-Hash</title>
</head>
<body>
<div class="bg bloc">
<div class="double">
<p class="bg">Write the key you want...</p>
<textarea class="bg input hash" placeholder="key"></textarea>
<div class="bg imgBloc">
<div class="img a"></div>
</div>
</div>
<div class="double">
<p class="bg">Write the message you want to encrypt...</p>
<textarea class="bg input txt" placeholder="msg"></textarea>
<div class="bg imgBloc">
<div class="img b"></div>
</div>
</div>
<div class="double">
<p class="bg">Write the message you want to decipher...</p>
<textarea class="bg input txtHash" placeholder="msg-hash"></textarea>
<div class="bg imgBloc">
<div class="img c"></div>
</div>
</div>
<div class="double">
<a class="bg footer" href="https://rmbi.ch/vital/donation">₿</a>
<a class="bg footer" href="https://github.com/Vital-Vuillaume">ⓒ 2024 - Vital production</a>
</div>
</div>
</body>
</html>