aboutsummaryrefslogtreecommitdiff
path: root/webui.html
blob: 92ce05abb42f5cedbd77a30e9d8b1e05d84bc189 (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
32
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link href="static/external/bootstrap/css/bootstrap.min.css" rel="stylesheet">
  <link href="static/external/bootstrap/css/bootstrap-theme.min.css" rel="stylesheet">
  <link href="static/wire.css" rel="stylesheet">
  <title>WIRE</title>
</head>
<body>

  <div id="main" class="container-fluid center">

    <form id="submitImage">
      <div class="form-group">
        <label class="title" for="imageFile">Image file:</label>
        <input id="imageFile" type="file" required class="form-control">
      </div>
    </form>
    
    <div id="message" style="display: none;"></div>
    <div id="image"><img src="#"></div>

  </div>
  
  <script src="static/external/jquery-2.2.4.min.js"></script>
  <script src="static/external/bootstrap/js/bootstrap.min.js"></script>
  <script src="static/wire.js"></script>
</body>
</html>