Created
April 14, 2012 14:39
-
-
Save dmozzy/2384844 to your computer and use it in GitHub Desktop.
Task Edit Page
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
<!-- 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