-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
39 lines (39 loc) · 1.05 KB
/
index.html
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
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<title>Something Distributed Computing!</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="./css/main.css">
</head>
<body>
<div class="container">
<div class="form">
<h3>Add a Job</h3>
<form action="/action_page.php">
<label>Job Name:</label>
<input type="text" name="jobname" placeholder="Enter Job Name">
<br>
<br>
<div class="select-form">
<label>Type of Task:</label>
<select class="form-select" name="tasktype" placeholer="Select Task Type">
<option value="none">Nothing</option>
<option value="filterby">Filter By</option>
</select>
</div>
<br>
<br>
<label>Data Upload</label>
<input type="file">
<br>
<br>
<input type="submit" value="Submit">
</form>
</div>
</div>
<script src="./jquery/jquery-3.3.1.min.js"></script>
<script src="./javascript/main.js"></script>
</body>
</html>