-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathadd.html
More file actions
64 lines (46 loc) · 2.03 KB
/
add.html
File metadata and controls
64 lines (46 loc) · 2.03 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
<!DOCTYPE html>
<html>
<head>
<head>
<title>Add a Flyer | FlyMaS</title>
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!--Bootstrap-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous">
<!--CSS-->
<link rel="stylesheet" href="style.css">
<!--JS-->
<script type="text/javascript" src="script.js"></script>
<!-- Other stuff W3Schools told me to do-->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
</head>
<body>
<div id="body-wrapper">
<nav class="navbar navbar-light bg-light justify-content-between">
<a class="navbar-brand">
<h1>FlyMaS</h1>
<div class="nabar-description">The Flyer Management System</div>
</a>
<form class="form-inline" action="index.html">
<button class="btn btn-outline-success my-2 my-sm-0 btn-lg" type="submit">See all Flyers</button>
</form>
</nav>
<div class="container-fluid" id="page-body">
<div class="container-fluid" id="button-container">
<form class="form text-center">
<button class="btn btn-lg btn-upload" type="submit">Upload image</button>
<input type='file' class="btn btn-lg btn-capture"/>
<br><img id="myImg" src="#" alt="Your Image" height=200 width=100>
</form>
</div>
</div>
<footer class="container-fluid bg-4 text-center">
<p><code><> by Alex, Frank and Utsav.</code></p>
</footer>
</body>
</html>