-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcal.html
50 lines (48 loc) · 1.69 KB
/
cal.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
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<title>Calculator</title>
<link rel="stylesheet" href="/css/bootstrap.min.css"/>
<link rel="stylesheet" href="/css/pad.css"/>
</head>
<body>
<nav class="navbar navbar-expand-lg bg-light">
<div class="container-fluid">
<a href="/index.html" class="navbar-brand">
<img src="/img/head.png" alt="BITLogo" style="width: 5rem">
Python-based Multi-threaded Server
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto">
<li class="nav-item">
<a class="nav-link" href="/cal.html">Calculator</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/query.html">Database Query</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/Team.html">Team</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container">
<form class="pad" method="post" action="/cgi-bin/cal.py">
<div class="input-group">
<span class="input-group-text">Expression</span>
<input class="form-control" type="text" name="expr"/>
<input
class="input-group-text btn btn-primary"
type="submit"
value="Calculate!"
/>
</div>
</form>
</div>
<script src="/js/bootstrap.bundle.min.js"></script>
</body>
</html>