Created
July 18, 2016 15:18
-
-
Save the-dagger/c6d8a13ed0691266cfcc803c2b755a3b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form name="htmlform" id="form" enctype="multipart/form-data"> | |
<p align="center"><b><big>FOSSASIA's App Generator</big></b></p> | |
<table align="center" | |
width = "900px" | |
height="200px"> | |
<tr> | |
<td valign="top"> | |
<label for="Email">Email</label> | |
</td> | |
<td valign="top"> | |
<input id="email" type="email" name="Email" size="30"> | |
</td> | |
<td> | |
<td valign="top"> | |
<label for="name">App's Name</label> | |
</td> | |
<td valign="top"> | |
<input id="appName" type="text" name="App_Name" maxlength="50" size="30"> | |
</td> | |
</tr> | |
<tr> | |
<td valign="top"> | |
<label for="link">Api Link</label> | |
</td> | |
<td valign="top"> | |
<input id="apiLink" type="url" name="Api_Link" maxlength="90" size="30"> | |
</td> | |
</tr> | |
<tr> | |
<td valign="top"> | |
<label for="sessions">Zip containing .json files</label> | |
</td> | |
<td valign="top"> | |
<input accept=".zip" type="file" id="uploadZip" name="sessions"> | |
</td> | |
</tr> | |
<tr> | |
<td colspan="5" style="text-align:center"> | |
<button type="submit">Generate and Download app</button> | |
</td> | |
</tr> | |
</table> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment