-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
30 lines (26 loc) · 759 Bytes
/
form.html
File metadata and controls
30 lines (26 loc) · 759 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
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
<script src="script.js"></script>
</head>
<body onload="displayBrief()">
<form>
<p>EDIT</p>
<label class="label">Name:</label>
<input class="input" type="text" id="name" value="">
<br>
<label class="label">Status:</label>
<select class='select' id="status">
<option value="lost">lost</option>
<option value="in progress">in progress</option>
<option value="complete">complete</option>
</select>
<br>
<label class="label">Due date:</label>
<input class="input" type="text" id="duedate" value="">
<br><br>
<input class="submit-btn form-submit-button" type="submit" value="save">
</form>
</body>
</html>