Skip to content

Instantly share code, notes, and snippets.

@mnsmarcelo
Created October 18, 2015 12:41
Show Gist options
  • Save mnsmarcelo/f4bac87e1e24ef8aeed6 to your computer and use it in GitHub Desktop.
Save mnsmarcelo/f4bac87e1e24ef8aeed6 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Upload</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<style>
.top-buffer { margin-top:20px; }
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-6">
<form class="form">
<div class="form-group">
<label>Arquivos</label>
<input type="file" class="arquivos form-control" multiple="multiple">
</div>
<input type="button" class="btn" id="btn" value="salvar">
</form>
<div class="alert alert-success top-buffer" style="display: none;" role="alert">
</div>
<div class="alert alert-danger top-buffer" style="display: none;" role="alert">
</div>
</div>
</div>
<div class="row top-buffer miniaturas">
</div>
</div>
<script src="upload.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment