-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.html
39 lines (38 loc) · 1.33 KB
/
app.html
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
<html>
<head>
<title>Logic Design Recognition</title>
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="bootstrap/css/bootstrap-theme.min.css">
<script src="bootstrap/js/bootstrap.min.js"></script>
</head>
<body class="container">
<nav class="navbar navbar-default">
<div class="container-fluid">
<ul class="nav navbar-nav">
<li>
<a>
<h3>Logic Design Recoginition</h3>
</a>
</li>
</ul>
</div>
</nav>
<div class="bs-docs-grid">
<div class="row show-grid">
<label style="margin-right:134px">Your file dir</label>
<input id="filedir" style="width:400px" />
</div>
<div class="row show-grid">
<label style="margin-right:30px">Your gate output file name</label>
<input style="width:200px" id="picoutname"/>
</div>
<div class="row show-grid">
<label style="margin-right:11px">Your verilog output file name</label>
<input style="width:200px" id="verilogoutname"/>
</div>
<div class="row">
<button class="btn btn-primary vertical-center" onclick="app.sayHello()">Recognition</button>
</div>
</div>
</body>
</html>