-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathuploads.html
More file actions
25 lines (25 loc) · 1.23 KB
/
uploads.html
File metadata and controls
25 lines (25 loc) · 1.23 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
<!-- The data encoding type, enctype, MUST be specified as below -->
<form enctype="multipart/form-data" action="uploads.php" method="POST">
<!-- MAX_FILE_SIZE must precede the file input field -->
<!-- Name of input element determines name in $_FILES array -->
<script>
WebFontConfig = {
google: { families: [ 'Raleway::latin' ] }
};
(function() {
var wf = document.createElement('script');
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
'://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})();
</script>
<style>html * {font-family: Raleway, sans-serif;}</style>
<link href="http://bootswatch.com/lumen/bootstrap.min.css" rel="stylesheet">
<center><h3>Upload je eigen skin!</h3><hr/><br/><p>Download een png afbeelding, rename hem naar *naamvanjecell*.png, en upload hem hier. Join dan met de naam van je cell en je krijgt de skin.<br/><b>Max:</b>2MB<br/><b>Alleen PNG!</b><hr/></p>
<input type="file" name="fileToUpload" id="fileToUpload">
<br/>
<input class="btn btn-info" type="submit" value="Upload Image" name="submit">
</form>