-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcsv.html
More file actions
25 lines (24 loc) · 774 Bytes
/
csv.html
File metadata and controls
25 lines (24 loc) · 774 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
<html>
<head>
<script src="script.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="theForm">
<form>
<label>Name <span class="req">*</span></label>
<input type="text" placeholder="Name" class="isReq">
<br> <br>
<label>Directory <span class="req">*</span> </label>
<input type="text" placeholder="Directory" value="/tmp" class="isReq">
<br> <br>
<label>Filter <span class="help"></span></label>
<textarea></textarea>
<br>
<label class="note"><span class="req">*</span> is required field</label>
<br>
<input type="submit" value="Save" id="save" disabled>
</form>
</div>
</body>
</html>