-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (66 loc) · 3.46 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title></title>
</head>
<body>
<section class="section">
<form action="" class="form">
<h1 class="form__title">
Исследование шифров:<br /><span class="form-title--bright">от Цезаря до RSA</span>
</h1>
<p class="form__text">
В рамках проекта мы сравниваем исторические и современные методы
шифрования, от древних шифров Цезаря до сложных алгоритмов современной
криптографии, таких как RSA.
</p>
<div class="radio-container">
<div class="radio-group">
<input
id="ceaser-cipher"
name="ciphers-radio-input"
class="radio-group--input"
type="radio"
data-form-target="ceaser-cipher-form"
checked
/>
<label class="radio-group--label" for="ceaser-cipher">Шифр Цезаря</label>
</div>
<div class="radio-group--block">
<input id="vigenere-cipher" name="ciphers-radio-input" class="radio-group--input" type="radio" />
<label class="radio-group--label" for="vigenere-cipher">Шифр Виженера</label>
</div>
<div class="radio-group--block">
<input id="rsa-cipher" name="ciphers-radio-input" class="radio-group--input" type="radio" />
<label class="radio-group--label" for="rsa-cipher">RSA</label>
</div>
<div class="radio-group--block">
<input id="aes-cipher" name="ciphers-radio-input" class="radio-group--input" type="radio" />
<label class="radio-group--label" for="aes-cipher">AES</label>
</div>
</div>
<!-- Шифр Цезаря -->
<div id="ceaser-cipher-form" class="form-group-container">
<div class="form-group">
<label class="form-group--label" for="ceaser-cipher-text">Текст:</label>
<textarea id="ceaser-cipher-text" class="form-group--textarea" rows="5"></textarea>
</div>
<div class="form-group">
<label class="form-group--label" for="ceaser-cipher-text">Ключ:</label>
<input id="ceaser-cipher-key" class="form-group--input" type="text" value="0" />
<span id="ceaser-cipher-key-caption" class="form-group--caption"></span>
</div>
<div class="form-group">
<label class="form-group--label" for="encrypted">Зашифрованный текст:</label>
<textarea id="ceaser-cipher-encrypted" class="form-group--textarea" rows="5"></textarea>
</div>
</div>
<span class="form__caption">Сделал Никита Бабанов и еще кое-кто...</span>
</form>
</section>
<script src="js/script.js" type="module"></script>
</body>
</html>