aboutsummaryrefslogtreecommitdiff
path: root/tools/gui/resources/web/index.html
blob: 9ad45a59f7ef82b89baf4c09eed7fea441d08da8 (plain) (blame)
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
<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <meta name="author" content="tim-zh">
  <title>CBT</title>
  <link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="popup">
  <div onclick="hidePopup()">×</div>
  <table id="popup-table"></table>
</div>
<div class="container">

  <h1>CBT bootstrap</h1>

  <div id="cwd" class="entry"><span>current dir:</span> </div>
  <div class="entry"><input type="text" id="name" placeholder="project name"></div>
  <div class="entry"><input type="text" id="package" placeholder="default package"></div>
  <hr>

  <div class="entry"><input type="text" id="query" placeholder="add maven dependency" onkeyup="handleSearchInput(event)"></div>
  <button class="small-btn" onclick="search()">search</button>
  <div id="dependencies"></div>
  <hr>

  <input type="checkbox" id="readme-flag"><label for="readme-flag">readme.md</label>
  <input type="checkbox" id="dotty-flag"><label for="dotty-flag">dotty</label>
  <input type="checkbox" id="uberJar-flag"><label for="uberJar-flag">uber jar</label>
  <input type="checkbox" id="wartremover-flag"><label for="wartremover-flag">wartremover</label>
  <hr>

  <button id="create-project" onclick="createProject()">create project</button>

</div>
<script src="jquery-3.1.1.min.js"></script>
<script src="main.js"></script>
</body>
</html>