-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (32 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="description" content="Send video URLs to Kodi.">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Video URL to Kodi</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="css/custom.css">
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js"></script>
<script src="js/kodi.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container-fluid"> <!--fixed width container for bootstrap-->
<div class="row">
<div class="col-sm-3"></div>
<div class="col-sm-6">
<form id="submitform" action="">
<div class="form-group">
<label for="url" class="sr-only">Enter URL</label>
<input type="text" id="url" class="form-control" placeholder="Enter video URL..." required autofocus>
</div>
<input type="submit" id="send" class="btn btn-primary" value="Send to Kodi">
</form>
</div>
<div class="col-sm-3"></div>
</div>
</div>
</body>
</html>