-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (83 loc) · 3.56 KB
/
index.html
File metadata and controls
90 lines (83 loc) · 3.56 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
</head>
<body>
<style>
.card{
background: transparent;
}
#console {
height: 500px;
overflow-y: auto;
background-color: rgba(240,240,240,0.8);
}
body{
background: url('img/bg.png');
background-size: cover;
background-attachment: fixed;
padding-top: 1.5rem;
padding-bottom: 1.5rem;
}
#commands{
margin: 50px auto;
width:80% /* value of your choice which suits your alignment */
}
</style>
<div class="container">
<nav class="header">
<nav>
<ul class="nav nav-pills float-right">
<li class="nav-item">
<a class="nav-link active" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/BeholderDEV/Neur/raw/master/Artigo%20final.docx" target="_blank">Paper</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/BeholderDEV/Neur" target="_blank">Source</a>
</li>
</ul>
</nav>
<h3 class="text-muted"><img src="img/logo.png" width="30%"></h3>
</nav>
<section>
<div class="container">
<form class="form-inline text-center" id="commands">
<div class="form-group m-3">
<button id="train" class="btn btn-primary">Train Network</button>
</div>
<div class="form-group m-3">
<select class="form-control" id="exampleSelect1">
<option value="bulba">Bulbasaur</option>
<option value="charmander">Charmander</option>
<option value="squirtle">Squirtle</option>
</select>
</div>
<div class="form-group m-3">
<button id="load" class="btn btn-primary">Load Network</button>
</div>
<div class="form-group m-3">
<button id="save" class="btn btn-primary">Save Network</button>
</div>
<div class="form-group m-3">
<button id="test" class="btn btn-primary">Test Network</button>
</div>
</form>
<div class="col-md-12 m-3">
<div class="card">
<div id="console" class="card-block bg-faded">
</div>
</div>
</div>
</div>
</section>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
<script src="https://rawgit.com/wagenaartje/neataptic/master/dist/neataptic.js"></script>
<script src="libs/broiler.min.js"></script>
<script src="script.js"></script>
</body>
</html>