-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (38 loc) · 1.34 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Page Title</title>
<meta name="description" content="Page Discription" />
<meta name="keywords" content="Page Keywords" />
<meta name="author" content="Author Name" />
<meta name="robots" content="index, follow all" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body>
<header>
<h1>FCM - UbuntuVers CRUD</h1>
</header>
<article>
<form id='ubuVersForm'>
<label for="ubuVersNum">Version</label>
<input type="text" name="ubuVersNum" id="ubuVersNum" value="" placeholder="10.04 LTS" />
<label for="ubuVersName">Release Name</label>
<input type="text" name="ubuVersName" id="ubuVersName" value="" placeholder="Lucid Lynx" />
<input type="submit" name="submit" id='submit' value="Add" />
</form>
<section>
<button onClick='clearLocalStorage()'>Clear localStorage</button>
</section>
<section id="ubuntuVersionsDisplay">
<h3>Ubuntu Versions</h3>
<ul id="ubuntuVersionsDisplayList"></ul>
</section>
</article>
<footer>
<h3>Footer Rock</h3>
</footer>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>