-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (28 loc) · 974 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="assets/stylesheets/main.css" crossorigin="anonymous">
<title>Resize Image JS</title>
</head>
<body>
<div class="container main">
<div>
<form method="post" class='form'>
<div class="field">
<input type="file" name="file[]" id="file" class="input-files" multiple>
<label for="file">Selecione os arquivos</label>
</div> <br>
<div class="field">
<button type="submit" class="resize-action btn btn-primary">Iniciar</button>
</div>
</form>
</div>
<div class="previews"></div>
</div>
<script src="node_modules/resize-image-canvas/lib/resize-image-canvas.js"></script>
<script src="assets/javascripts/main.js"></script>
</body>
</html>