Skip to content

Commit

Permalink
stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Armstrong committed May 12, 2015
1 parent 1bba0e7 commit 176a88e
Show file tree
Hide file tree
Showing 16 changed files with 919 additions and 252 deletions.
102 changes: 102 additions & 0 deletions form_note.html
@@ -0,0 +1,102 @@


<input type="button" onclick="hide_modal('modal1');"
style="float:right;display:block;margin-bottom:5px;"
value="Cancel" />

<form id="form1"
method="post" target = "_"
action="form_submitted.html">
<input type="hidden" name="form" value="form_note"/>
<table border="1" cellspacing="0" cellpadding="5" width="95%">
<tbody>
<tr>
<td align="right"><b>Title:</b></td>
<td><input type="text" style="width:100%;"/></td>
</tr>

<tr>
<td align="right"><b>Tags:</b></td>
<td><input type="text" style="width:100%;"/></td>
</tr>

<tr>
<td align="right"><b>URL:</b></td>
<td><input type="text" style="width:100%;"/></td>
</tr>

<tr>
<td align="right"><b>Privacy:</b></td>
<td align="left" >
<input type="radio" name="privacy" value="public" checked="checked"/>
<b>Normal</b>
<input type="radio" name="privacy" value="private"/> <b>Private</b>
</td>
</tr>

<tr>
<td valign="top" align="right"><b>Reminder:</b></td>
<td>
<b>Number of times</b>
<input type="text" name="times" style="width:50px"/>
<b>First time</b> <input name="first_date" type="date"/>
</td>
</tr>

<tr>
<td valign="top" align="right"><b>Repeat:</b></td>
<td>
<input type="radio" name="repeat" value="never" checked="checked"/>
<b>Never</b>

<input type="radio" name="repeat" value="daily" />
<b>Dayly</b>

<input type="radio" name="repeat" value="weekly"/>
<b>Weekly</b>

<input type="radio" name="repeat" value="monthly"/>
<b>Monthly</b>

<input type="radio" name="repeat" value="yearly"/>
<b>Yearly</b>
</td>
</tr>

<tr>
<td align="right" ><b>Country:</b> </td>
<td align="left" >
<select name="country">
<option value="0">----</option>
<option value="54">Afghanistan</option>
<option value="65">Albania</option>
<option value="35">Algeria</option>
<option value="68">Andorra</option>
<option value="36">Angola</option>
<option value="89">Antigua Barbuda</option>
<option value="19">Argentina</option>
<option value="20">Australia</option>
<option value="37">Austria</option>
</select>
</td>
</tr>

<tr>

<td align="left">
<textarea name="text" cols="50" rows="10"></textarea>
</td>
</tr>

<tr>
<td colspan="2" align="center">
<input type="button" onclick="send_form_and_hide_modal('form1', 'modal1');"
value="Send" />
<input type="reset" value="Reset"/>
<input type="button" onclick="hide_modal('modal1');" value="Cancel" />
</td>
</tr>
</tbody>
</table>
</form>

55 changes: 55 additions & 0 deletions form_reminder.html
@@ -0,0 +1,55 @@

<h1>Form reminder (needs edit)</h1>

<form id="form1"
method="post" target = "_"
action="form_submitted.html">
<input type="hidden" name="form" value="form_reminder"/>
<table border="1" cellspacing="0" cellpadding="5" width="95%">
<tbody>
<tr>
<td valign="top" align="right"><b>Reminder:</b></td>
<td>
<b>Number of times</b>
<input type="text" name="times" style="width:50px"/>
<br>
<b>First time</b> <input name="first_date" type="date"/>
</td>
</tr>

<tr>
<td valign="top" align="right"><b>Repeat:</b></td>
<td>
<input type="radio" name="repeat" value="never" checked="checked"/>
<b>Never</b>

<input type="radio" name="repeat" value="daily" />
<b>Dayly</b>

<input type="radio" name="repeat" value="weekly"/>
<b>Weekly</b>

<input type="radio" name="repeat" value="monthly"/>
<b>Monthly</b>

<input type="radio" name="repeat" value="yearly"/>
<b>Yearly</b>
</td>
</tr>
<tr>
<td align="right" valign="top"><b>Text:</b></td>
<td align="left">
<textarea name="text" cols="50" rows="10">
</textarea>
</td>
</tr>
</tbody>
</table>


<input type="button" onclick="send_form_and_hide_modal('form1', 'myform1');"
value="Send" />
<input type="reset" value="Reset"/>
<input type="button" onclick="hide_modal('modal1');" value="Cancel" />
</form>

14 changes: 14 additions & 0 deletions form_todo.html
@@ -0,0 +1,14 @@

<h1>Form Todo (needs edit)</h1>

<form id="form1"
method="post" target = "_"
action="form_submitted.html">
<textarea name="text" cols="50" rows="10">
</textarea>
<input type="button" onclick="send_form('form1', 'myform1');"
value="Send" />
<input type="reset" value="Reset"/>
<input type="button" onclick="hide_modal('modal1');" value="Cancel" />
</form>

16 changes: 16 additions & 0 deletions form_tweet.html
@@ -0,0 +1,16 @@

<h1>Form Tweet (needs edit)</h1>

<form id="form1"
method="post" target = "_"
action="form_submitted.html">
<input type="hidden" name="form" value="form_tweet"/>
<textarea name="text" cols="50" rows="10">
</textarea>
<br>
<input type="button" onclick="send_form_and_hide_modal('form1', 'myform1');"
value="Send" />
<input type="reset" value="Reset"/>
<input type="button" onclick="hide_modal('modal1');" value="Cancel" />
</form>

0 comments on commit 176a88e

Please sign in to comment.