-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (52 loc) · 1.49 KB
/
index.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
</head>
<style>
.center {
display: flex;
justify-content: center;
align-items: center;
height: 200px;
border: 3px solid green;
}
.titlecenter {
display: flex;
justify-content: center;
align-items: center;
height: 200px;
}
</style>
<body>
<!-- As a heading -->
<nav class="navbar navbar-light bg-light">
<div class="container-fluid">
<div class="titlecenter">
<div>
<h1>Computational Photography</h1>
</div>
</div>
</div>
</nav>
<div class="card text-center">
<div class="card-header">
</div>
<div class="card-body">
<h4 class="card-title">Upload Image to Process</h4>
<div class="center">
<form action="/uploadfile" enctype="multipart/form-data" method="POST">
<input type="file" class="btn btn-success" name="myFile" /><br>
<input type="submit" id="subbtn" class="btn btn-primary" value="Upload a file" />
</form>
</div>
</div>
</div>
</body>
</html>