Skip to content

Instantly share code, notes, and snippets.

@dmozzy
Created April 14, 2012 14:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dmozzy/2384844 to your computer and use it in GitHub Desktop.
Save dmozzy/2384844 to your computer and use it in GitHub Desktop.
Task Edit Page
<!-- Edit Task Popup-->
<div data-role="page" id="task-edit-page">
<div data-role="header">
<h1>Task</h1>
</div>
<div data-role="content">
<form name="task-edit-form">
<input id="taskId" name="taskId" type="hidden"/>
<label for="taskName">Task Name</label>
<input id="taskName" name="taskName" type="text" class="required" minlength="2"/>
<label for="taskLocationId">Location</label>
<select name="taskLocationId" id="taskLocationId"></select>
<input type="submit" value="Save" data-inline="true"/>
<a href="#" data-role="button" id="location-delete" data-inline="true">Delete</a>
</form>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment