-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
23 lines (22 loc) · 841 Bytes
/
popup.html
File metadata and controls
23 lines (22 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<link href="style.css" rel="stylesheet"/>
</head>
<body>
<div class="form_auth_block">
<div class="form_auth_block_content">
<form action="#" class="form_auth_style" method="post">
<label>Введите access token</label>
<input id="access_token" name="access_token" placeholder="Введите access token" required type="text">
<label>Введите user token</label>
<input id="user_token" name="user_token" placeholder="Введите user token" required type="text">
<button class="form_auth_button" id="form_auth_button" name="form_auth_submit" type="submit">Подтвердить
</button>
</form>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>