-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.html
33 lines (32 loc) · 1001 Bytes
/
options.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
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<link rel="stylesheet" href="bootstrap.min.css" />
<style type="text/css">
#option_container {
width: 500px;
margin: 0 auto;
}
</style>
</head>
<body>
<section id="option_container" class="card-body">
<h1 class="h1">Options</h1>
<p class="p-0">Enter your project name and their corresponding sid.</p>
<form id="#form">
<div class="form-row">
<label>Project 1:</label>
<div class="col">
<input type="text" id="project_1" class="form-control" />
</div>
<div class="col">
<input type="text" id="sid_1" class="form-control" />
</div>
</div>
</form>
<button id="add" class="btn btn-secondary">add project</button>
<button id="save" class="btn btn-primary">save</button>
</section>
<script src="options.js"></script>
</body>
</html>