misc-scripts/skinup/form.html

14 lines
672 B
HTML
Raw Normal View History

<form class="upload-skin" method="POST" action="target.php" target="_self" enctype="multipart/form-data">
<label for="player-name">Player name</label>
<input type="text" id="player-name" name="player-name" required="required">
Your YL name, with correct capitalization: if your YL name is John, do not write JOHN or john.
<p>
<label for="skin-name">Skin name</label>
<input type="text" id="skin-name" name="skin-name">
If you plan to submit multiple skins, give each a unique name.
<p>
<label for="skin-file">File:</label>
<input type="file" id="skin-file" name="skin-file" required="required">
<p>
<input type="submit" value="Upload">
</form>