Skip to content

Commit

Permalink
Remove formretain.js from users_form
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Bleiweis committed May 10, 2017
1 parent 1b05416 commit 6570bc6
Showing 1 changed file with 3 additions and 20 deletions.
23 changes: 3 additions & 20 deletions wbce/templates/advancedThemeWbFlat/templates/users_form.htt
Original file line number Diff line number Diff line change
@@ -1,22 +1,5 @@
<!-- BEGIN main_block -->

<script type="text/javascript" src="{WB_URL}/include/formretain.js">

/***********************************************
* Recall Form Values script- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
* Please keep this notice intact
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

</script>

<script type="text/javascript">
function toggle_radio(radio_on, radio_off) {
document.getElementById(radio_on).checked = true;
document.getElementById(radio_off).checked = true;
}
</script>

<h2 style="{DISPLAY_EXTRA}">{HEADING_MODIFY_USER}</h2>

<form name="user" action="{ACTION_URL}" method="post" class="{DISPLAY_ADD}">
Expand All @@ -27,7 +10,7 @@ function toggle_radio(radio_on, radio_off) {
<tr>
<td width="150">{TEXT_USERNAME}:</td>
<td class="value_input">
<input type="text" name="{USERNAME_FIELDNAME}" maxlength="30" value="{USERNAME}" class="memorize" />
<input type="text" name="{USERNAME_FIELDNAME}" maxlength="30" value="{USERNAME}" />
</td>
</tr>
<tr>
Expand All @@ -51,13 +34,13 @@ function toggle_radio(radio_on, radio_off) {
<tr>
<td>{TEXT_DISPLAY_NAME}:</td>
<td class="value_input">
<input type="text" name="display_name" maxlength="255" value="{DISPLAY_NAME}" class="memorize" />
<input type="text" name="display_name" maxlength="255" value="{DISPLAY_NAME}" />
</td>
</tr>
<tr>
<td>{TEXT_EMAIL}:</td>
<td class="value_input">
<input type="text" name="email" maxlength="255" value="{EMAIL}" class="memorize" />
<input type="text" name="email" maxlength="255" value="{EMAIL}" />
</td>
</tr>
<tr style="{DISPLAY_HOME_FOLDERS}">
Expand Down

0 comments on commit 6570bc6

Please sign in to comment.