freeipa/install/static/user-add.inc
Adam Young 125bd09faf The Javascript code for the new web UI
Now with whitespace cleanup.
2010-08-06 11:55:38 -04:00

26 lines
754 B
HTML

<script type="text/javascript">
$(document).ready(function(){
$("#addEdit").click(addEditUser);
$("#addAnother").click(addAnotherUser);
/*this is a placeholder. We will need to I18N */
$("#content h1").text( "Add a User.");
});
</script>
<div id="buttons">
<span>Add and :</span>
<input id="addEdit" type='button' value="Edit" />
<span>|</span>
<input id="addAnother" type='button' value="Add Another" />
</div>
<h1></h1>
<dl class="entryattrs">
<dt title="login">login</dt>
<dd><input id='login' type='text' value=''/></dd>
<dt title ="firstname">First Name</dt>
<dd><input id='firstname' type='text' value=''/></dd>
<dt title="lastname">Last Name</dt>
<dd><input id='lastname' type='text' value=''/></dd>
</dl>