Added a form for uploading maps

also added license to all files, and created LICENSE

refs #16
This commit is contained in:
2012-04-25 13:12:47 -04:00
parent 2b34516aa8
commit d7419530dd
5 changed files with 108 additions and 0 deletions

20
app/views/maps/index.html.erb Executable file
View File

@@ -0,0 +1,20 @@
<h1>Exception Handler Maps</h1>
<br/>
<!-- TODO uploader action -->
<form action="XXX" method="post" enctype="multipart/form-data">
<label for="package">Package:</label>
<br/>
<input name="package" id="package" type="text" maxlength="5555500" size=50%/>
<br/>
<label for="package">Build:</label>
<br/>
<input name="build" id="build" type="text" maxlength="5555500" size=50%/>
<br/>
<label for="file">File:</label>
<br/>
<input type="file" name="file" id="file" accept="text/plain" />
<br/>
<br/>
<input type="submit" name="submit" value="Submit" />
</form>