-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcalculate.html
44 lines (35 loc) · 1.07 KB
/
calculate.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>File System</title>
<link rel="stylesheet" href="./bower_components/bootstrap/dist/css/bootstrap.min.css" />
<style type="text/css">
#contact-list {
height: 150px;
overflow-y: auto;
}
</style>
</head>
<body>
<div class="container">
<h1 style="color:blue;">Calculating power of two numbers</h1>
<div class="form-group">
<label for="num1">Number 1</label>
<input type="text" name="num1" value="" id="num1" class="form-control" required>
</div>
<div class="form-group">
<label for="num2">Number 2</label>
<input type="text" name="num2" value="" id="num2" class="form-control" required>
</div>
<div class="form-group">
<button class="btn btn-primary" id="calculate">Process using python</button>
</div>
<div class="form-group">
<label>Answer is :</label>
<span class="badge badge-pill badge-success" id="answer" style="font-size: 20px;"></span>
</div>
<script src="./callPython.js"></script>
</div>
</body>
</html>