<script>
var cB;
$(function() {
_quickCreate.dialog("option", "title", "Balls!");
$('#cB').on(
"click",
function() {
_quickCreate.dialog("close");
}
);
});
</script>
<button id="cB">Close</button>
<form method="post" id="edit_user_form">
<p class="validateTips">All form fields are required.</p>
<table class="paymentMethods">
<tr>
<td>E-Mail (Login)</td>
<td><input type="text" name="data[email]" id="email"></td>
</tr>
<tr>
<td>First name</td>
<td><input type="text" name="data[first_name]" id="first_name"></td>
</tr>
<tr>
<td>Last Name</td>
<td><input type="text" name="data[last_name]" id="last_name"></td>
</tr>
<tr>
<td>ACL</td>
<td>ACL</td>
</tr>
<tr>
<td colspan="5"><input type="submit" name="data[up]" value="Update"></td>
</tr>
</table>
</form>