-
Notifications
You must be signed in to change notification settings - Fork 8
/
form-chpass.php
30 lines (30 loc) · 1.07 KB
/
form-chpass.php
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
29
30
<div class='module'>
<form method="post" enctype="multipart/form-data">
<fieldset><legend><?php echo msg('authentication');?></legend>
<div class='required'>
<label for='username'><?php echo msg('username');?></label>
<input type='text' name='username' id='username'/>
</div>
<div class='required'>
<label for='password'><?php echo msg('old_password');?></label>
<input type='password' name='password' id='password'/>
</div>
<div class='required'>
<label for='np1'><?php echo msg('new_password1');?></label>
<input type='password' name='np1' id='np1'/>
</div>
<div class='required'>
<label for='np2'><?php echo msg('new_password2');?></label>
<input type='password' name='np2' id='np2'/>
</div>
</fieldset>
<fieldset>
<div class="submit">
<div>
<input type="submit" class="inputSubmit" value="<?php echo msg('ok');?>" />
<input type="submit" class="inputSubmit" value="<?php echo msg('cancel');?>" />
</div>
</div>
</fieldset>
</form>
</div>