arkiwi_boilerplate/app/upload.html
2015-09-13 00:41:33 +02:00

72 line
2.7 KiB
HTML

<!doctype html>
<!--[if lt IE 7]>
<html class = "no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>
<html class = "no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]>
<html class = "no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>arkiwiJsBoilerplate</title>
<meta name="description" content="Arkiwi JS Boilerplate">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<!-- build:css styles/vendor.css -->
<!-- bower:css -->
<!-- endbower -->
<!-- endbuild -->
<!-- build:css(.tmp) styles/main.css -->
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" href="styles/main.css">
<!-- endbuild -->
</head>
<body>
<!--[if lt IE 10]>
<p class = "browsehappy">You are using an <strong>outdated</strong> browser. Please
<a href = "http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div class="container">
<header>
</header>
<form target="arkiwi_hidden_iframe" id="arkiwifile" class="form-inline">
<input type="file" id="hiddenfileinput" style="position: absolute; top: -1000px;">
<input type="text" id="displayedfileinput"/>
<button type="button" class="btn" id="displayedbrowsebutton">Browse</button>
<!--<div class="input-xxlarge" style="margin: 0 auto; display: none;" id="fileprogressbar">
<div class="progress progress-striped">
<div class="bar" id="fileprogressbarinternal"></div>
</div>
<div>
<span id="fileuploadpart">0</span><span> of </span><span id="fileuploadtotal"></span>
</div>
</div>-->
<span class="help-block" id="instructions">Select a file to upload to Arkiwi asset store.</span>
<button type="button" class="btn" id="uploadbutton" title="Upload to Arkiwi asset store">Upload</button>
</form>
</div>
<!-- build:js scripts/vendor.js -->
<!-- bower:js -->
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/mustache/mustache.js"></script>
<script src="bower_components/bower-parseuri/parseuri.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.js"></script>
<!-- endbower -->
<!-- endbuild -->
<script src="scripts/arkiwi.js" type="text/javascript"></script>
<script src="scripts/upload.js" type="text/javascript"></script>
</body>
</html>