-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (66 loc) · 2.83 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
<!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">
<link rel="stylesheet" href="style.css">
<title>Crepter Msg</title>
</head>
<body>
<div class="container">
<div>
<form>
<div class="title"><h1>crepter votre message</h1></div>
<div class="body">
<div class="input_parent">
<textarea type="text" id="inputCre"></textarea>
<input type="text" placeholder="clé" id="cleCre">
</div>
<div class="traitement">
<div class="progress">
<span class="progress_bar">
<span></span>
</span>
<span class="progress_number">0%</span>
</div>
<div class="btn">
<input type="button" onclick="crepter()" id="Crepter" value="Crepter">
</div>
</div>
<div class="output_parent">
<textarea type="text" id="outputCre"></textarea>
</div>
</div>
</form>
</div>
<hr>
<div>
<form>
<div class="title"><h1>decrepter votre message</h1></div>
<div class="body">
<div class="input_parent">
<textarea id="inputDec"></textarea>
<input type="text" placeholder="clé" id="cleDec">
</div>
<div class="traitement">
<div class="progress">
<span class="progress_bar">
<span></span>
</span>
<span class="progress_number">0%</span>
</div>
<div class="btn">
<input type="button" onclick="decrepter()" id="Decrepter" value="Decrepter">
</div>
</div>
<div class="output_parent">
<textarea type="text" id="outputDec"></textarea>
</div>
</div>
</form>
</div>
</div>
<script src="main.js"></script>
</body>
</html>