-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
26 lines (26 loc) · 1.26 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Удалить карточки</title>
<link rel="stylesheet" href="./popup/popup.css">
<link rel="stylesheet" href="./error-message/error-message.css">
</head>
<body>
<div class="popup popup_is-opened">
<div class="popup__content">
<h3 class="popup__title">Введите данные студента</h3>
<form id="kill_bill" class="popup__form" name="delete-cards" novalidate>
<input type="text" name="cohort" class="popup__input" id="cohort" placeholder="Введите когорту" minlength="4" required>
<span class="error-message" id="cohort-error"></span>
<input type="text" name="token" class="popup__input" id="token" placeholder="Введите токен" minlength="4" required>
<span class="error-message" id="token-error"></span>
<button class="button popup__button popup__button_place_edit" type="submit" disabled>Удалить мои карточки</button>
</form>
</div>
</div>
<script src="./FormValidator.js"></script>
<script src="./script.js"></script>
</body>
</html>