-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
32 lines (30 loc) · 903 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World App</title>
<link rel="stylesheet" href="photon.min.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="mainWrapper">
<h1>CRUD File</h1>
<form>
<div class="form-group">
<label>File name</label>
<input id="fileName" type="text" class="form-control">
</div>
<div class="form-group">
<label>Contents</label>
<textarea id="fileContents" class="form-control" rows="5"></textarea>
</div>
</form>
<button id="btnCreate" class="btn btn-default">Create</button>
<button id="btnRead" class="btn btn-default">Read</button>
<button id="btnDelete" class="btn btn-default">Delete</button>
</div>
<script>
require('./index.js')
</script>
</body>
</html>