-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
38 lines (38 loc) · 1.58 KB
/
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
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<title>Options for blank.</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div class="container">
<div class="row">
<form>
<table class="table" id="regexTable" style="width:100%">
<tr class="blank-header">
<th></th>
<th>Regex Pattern</th>
<th>Marker</th>
<th>Hex Color</th>
<th>Score</th>
<th></th>
</tr>
</table>
<button type=="button" class="btn btn-primary" id="newButton">Add new pattern</button>
<button type=="button" class="btn btn-outline-dark" id="germanButton">German patterns</button>
<button type=="button" class="btn btn-success float-right" id="saveButton">Save</button>
</form>
<p>Icon made by Freepik from <a>www.flaticon.com</a></p>
</div>
<br>
<button type=="button" class="btn btn-danger float-left" id="resetButton">Reset Scores</button>
</div>
<script src="options.js"></script>
<style type="text/css">
body {
height: 500px;
}
</style>
</body>
</html>