-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
25 lines (22 loc) · 770 Bytes
/
form.html
File metadata and controls
25 lines (22 loc) · 770 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contact us</title>
<link rel="stylesheet" href="./style.css">
<script src="./index.js"></script>
</head>
<body>
<h1>Contact us</h1>
<form id="form">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="phone">Номер телефона:</label>
<input type="tel" id="phone" name="phone" required>
<div id="dropzone">
<p id="dragNDrop">Перетащите или <button id = 'chooseButton'onClick="chooseFile()">выберите</button> файл</p>
</div>
<button type="submit", id = "submitButton">Отправить</button>
</form>
</body>
</html>