-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
57 lines (52 loc) · 2.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="node_modules/dropzone/dist/dropzone.css">
<link rel="stylesheet" href="style/style.css">
<title>Madi-fy</title>
</head>
<body>
<nav class="navbar navbar-dark bg-primary fixed-top navbar-expand-md">
<a class="navbar-brand" href="#">Madi-fy</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-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">
<span class="navbar-text text-center w-100">
Madi-fy your image by clicking or dropping it below.
</span>
<span class="navbar-text text-center w-100 removed">
Click on your madi-fyed image to download it, or madi-fy a new image by clicking or dropping it below
</span>
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a rel="noopener noreferrer" target="_blank" class="nav-link" href="https://github.com/JMU-CS/madify">How?</a>
</li>
</ul>
</div>
</nav>
<!-- <div class="editor-buttons"> -->
<form id="my-awesome-dropzone" class="dropzone dz-clickable" action="/dev/null">
<div class="preview-wrapper hidden mx-auto">
<canvas id="canvas" class="mx-auto"></canvas>
<p class="download-message">Click to save</p>
</div>
<!-- <label for="upload-file">Upload a Picture</label> -->
<input class="hidden dz-message" type="file" id="upload-file" placeholder="Upload a Picture" />
<!-- <button id="download-btn">Download Image</button> -->
</form>
<!-- <br /> -->
<!-- </div> -->
<script src="node_modules/caman/dist/caman.min.js"></script>
<script src="node_modules/@jmu-cs/customscale-camanjs-filter/index.js"></script>
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="node_modules/dropzone/dist/min/dropzone.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script src="js/index.js"></script>
</body>
</html>