File size: 2,181 Bytes
fd6fa60
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <meta name="description" content="">
    <meta name="author" content="">

    <title>ArduProg</title>

    <!-- Bootstrap core CSS -->
    <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
    <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/4.3.2/iframeResizer.contentWindow.min.js"></script>
    <!-- Custom styles for this template -->
    <link href="{{url_for('static', filename='frontend.css')}}" rel="stylesheet">
    
  </head>

  <body>

    <main role="main">

      <section class="jumbotron">
        <div class="container">
          <h1 class="jumbotron-heading">ArduinoProg: From Hardware Setups to Sample Source Code Generation</h1>
          <div class="mb-3">
            <label for="exampleFormControlInput1" class="form-label">Enter a Query</label>
            <input type="input" class="form-control" id="exampleFormControlInput1" placeholder="Query">
          </div>
          <p>
            <a href="#" class="btn btn-primary my-2" onclick="onSubmit()">Retrieve</a>
          </p>
          <div class="text-center" id="spinner" style="display: none">
            <div class="spinner-border" style="width: 4rem; height: 4rem;" role="status" aria-hidden="true">
              <span class="visually-hidden">Loading...</span>
            </div>
          </div>
        </div>
      </section>

      <div id="grey-container">
        <div id="main-parent" class="container">

        </div>
      </div>

            
    </main>

    <footer id="footer" class="text-muted">
    </footer>
    
    <script src="{{url_for('static', filename='frontend.js')}}"></script>
    </script>
  </body>
</html>