blob: 70e33bd7e42c47c5b3715ee58f9ce2388da7afe7 (
plain)
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>
<head>
<title>Graphing Module | Storperf</title>
<link rel="stylesheet" href="/reporting/css/bootstrap.min.css">
<script src="/reporting/js/jquery-2.1.3.min.js"></script>
<script src="/reporting/js/bootstrap.min.js"></script>
<script src="/reporting/js/jquery.bootpag.min.js"></script>
</head>
<body>
<div class="container">
<div class="content">
<div class="row center">
<br>
<form action="{{ url_for('url') }}" method="post">
<div class="form-group">
<label for="url">Enter URL:</label>
<br>
<input type="text" name="url" id="url" class="form-control">
<br>
<button type="submit" class="btn btn-default">Submit</button>
</div>
</form>
</div>
</div>
</div>
</body>
</html>
|