Files
dss.radio/templates/index.html
Fergal Moran 4f831b18fc Fix up
2015-09-22 22:02:19 +01:00

42 lines
1.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Deep South Sounds : Radio Interface</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700,300&amp;subset=latin,latin-ext'
rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=PT+Serif' rel='stylesheet' type='text/css'>
<link href='/static/css/bootstrap.css' rel='stylesheet' type='text/css'>
<link href="/static/fonts/font-awesome/css/font-awesome.css" rel="stylesheet">
<link href="/static/css/style.css" rel="stylesheet">
<link href="/static/css/custom.css" rel="stylesheet">
</head>
<body class="no-trans">
<div class="scrollToTop"><i class="icon-up-open-big"></i></div>
<div class="page-wrapper">
<section class="main-container">
<div class="container">
<div class="row">
<div class="main col-md-9">
<div class="form-group">
<label for="audio_file">Path to audio file</label>
<input type="text" class="form-control" id="audio_file" name="audio_file"
value="https://dsscdn.blob.core.windows.net/mixes/98c6adf1-3fdd-420a-944f-302025066231.mp3"
placeholder="Enter email">
</div>
<button id="play_audio" class="btn btn-default">Play Audio</button>
<button id="stop_audio" class="btn btn-default">Stop Audio</button>
</div>
</div>
</div>
</section>
</div>
<script src="/static/js/jquery.js"></script>
<script src="/static/js/app.js"></script>
</body>
</html>