-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.html
28 lines (24 loc) · 855 Bytes
/
options.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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,400,400italic,500,500italic,700,700italic,900,900italic" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="styles/main.css">
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet" />
<script src="scripts/jquery.min.js"></script>
<title>Raspberry Pi Cast Options</title>
</head>
<body>
Raspberry Pi IP Address:<br>
<input id="ip_address">
<br>
Port:<br>
<input id="port">
</input>
<div id="status"></div>
<button class="btn btn-default btn-sm" id="save"><i class="fa fa-save"></i>Save</button>
<a class="btn btn-default btn-sm" href="index.html">
<i class="fa fa-arrow-left"></i> Go back
</a>
<script src="scripts/options.js"></script>
</body>
</html>