-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (32 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<script src="./js/main.js" async></script>
<script src="./js/skeemaParser.js" async></script>
<title>SkeemaParser</title>
</head>
<body>
<div id="upload">
<h1>Insert a schema.rb file here ...</h1>
<img src="./img/down-arrow-sketch.svg" alt="down-arrow" >
<form>
<input id="file-input" type="file" >
<div class="inline">
<label for="skip-timestamps">Skip Timestamps ? </label>
<input type="checkbox" id="skip-timestamps" name="skip-timestamps" checked>
</div>
<div class="inline">
<label for="skip-active-storage">Skip Active Storage ? </label>
<input type="checkbox" id="skip-active-storage" name="skip-active-storage" checked>
</div>
<input type="submit" >
</form>
<img src="./img/rigth-arrow-sketch.svg" alt="right-arrow" >
<h1>... and get it hashed here !</h1>
</div>
<div id="result"></div>
</body>
</html>