-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
31 lines (31 loc) · 852 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
<!doctype html>
<html lang="en">
<head>
<title>Syncer</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="css/main.css">
<script data-main="js/main" src="js/libs/require.js"></script>
</head>
<body>
<div id="logo"></div>
<div id="linkgrp">
<div class="content-wrapper">
<div class="form-group">
<div class="input-group">
<input type="text" class="form-control" placeholder="Enter the URL..." id="link">
<span class="input-group-btn">
<button class="btn btn-default" id="addlink" type="button">Add link</button>
</span>
</div>
</div>
</div>
</div>
<div id="links">
<div class="content-wrapper">
<div id="link-panels">
</div>
</div>
</div>
</body>
</html>