forked from mtierltd/timetracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclients.php
More file actions
28 lines (26 loc) · 1.07 KB
/
clients.php
File metadata and controls
28 lines (26 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<div id="timetracker-clients">
<h1 class='page-title'>Clients</h1>
<div id="client-input-container" class='center'>
<form>
<input tabindex="1" type="text" spellcheck="false" autocomplete="off" class="" value="" placeholder="New client name..." id="new-client-input">
<input type="submit" value="Add client" id="new-client-submit" class="ui-button primary">
</form>
</div>
<div id="dialog-confirm" title="Confirmation Required" class='hidden'>
Are you sure you want to delete this client?
</div>
<div id="dialog-client-edit-form" title="Edit client" class='hidden'>
<p class="validateTips">All form fields are required.</p>
<form>
<fieldset>
<label for="name">Name</label>
<input type="text" name="name" id="name" value="" class="text ui-widget-content ui-corner-all">
<!-- Allow form submission with keyboard without duplicating the dialog button -->
<input type="submit" tabindex="-1" style="position:absolute; top:-1000px">
</fieldset>
</form>
</div>
<div class="clearfix"> </div>
<div id="clients">
</div>
</div>