-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 742 Bytes
/
index.html
File metadata and controls
25 lines (25 loc) · 742 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">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="index.css">
<title>Technical task</title>
</head>
<body>
<main>
<form class="form">
<input id="first-name" type="text" placeholder="Name">
<input id="last-name" type="text" placeholder="Surname">
<input id="email" type="email" placeholder="Email">
<input id="password" type="password" placeholder="Password">
<button type="submit" id="submit">Submit</button>
</form>
<div class="result">
<h2>Result</h2>
<p id="result-text"></p>
</div>
</main>
<script src="index.js"></script>
</body>
</html>