mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-12 04:31:32 +00:00
fix layout
This commit is contained in:
parent
1575cdb154
commit
c60f8f660d
|
@ -61,17 +61,13 @@ document.form1.newpassword.focus();
|
||||||
$this->contentContainerStart();
|
$this->contentContainerStart();
|
||||||
$this->formField(
|
$this->formField(
|
||||||
getMLText("password"),
|
getMLText("password"),
|
||||||
'<input class="pwd" type="password" rel="strengthbar" name="newpassword" id="password">'
|
'<input class="pwd form-control" type="password" rel="strengthbar" name="newpassword" id="password">'
|
||||||
);
|
);
|
||||||
if($passwordstrength > 0) {
|
if($passwordstrength > 0) {
|
||||||
?>
|
$this->formField(
|
||||||
<div class="control-group">
|
getMLText("password_strength"),
|
||||||
<label class="control-label"><?php printMLText("password_strength");?>:</label>
|
'<div id="strengthbar" class="progress" style="_width: 220px; height: 30px; margin-bottom: 8px;"><div class="bar bar-danger" style="width: 0%;"></div></div>'
|
||||||
<div class="controls">
|
);
|
||||||
<div id="strengthbar" class="progress" style="width: 220px; height: 30px; margin-bottom: 8px;"><div class="bar bar-danger" style="width: 0%;"></div></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<?php
|
|
||||||
}
|
}
|
||||||
$this->formField(
|
$this->formField(
|
||||||
getMLText("confirm_pwd"),
|
getMLText("confirm_pwd"),
|
||||||
|
|
|
@ -93,12 +93,12 @@ $(document).ready( function() {
|
||||||
);
|
);
|
||||||
$this->formField(
|
$this->formField(
|
||||||
getMLText("new_password"),
|
getMLText("new_password"),
|
||||||
'<input class="pwd" type="password" rel="strengthbar" id="pwd" name="pwd" size="30">'
|
'<input class="pwd form-control" type="password" rel="strengthbar" id="pwd" name="pwd">'
|
||||||
);
|
);
|
||||||
if($passwordstrength) {
|
if($passwordstrength) {
|
||||||
$this->formField(
|
$this->formField(
|
||||||
getMLText("password_strength"),
|
getMLText("password_strength"),
|
||||||
'<div id="strengthbar" class="progress" style="width: 220px; height: 30px; margin-bottom: 8px;"><div class="bar bar-danger" style="width: 0%;"></div></div>'
|
'<div id="strengthbar" class="progress" style="_width: 220px; height: 30px; margin-bottom: 8px;"><div class="bar bar-danger" style="width: 0%;"></div></div>'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
$this->formField(
|
$this->formField(
|
||||||
|
|
Loading…
Reference in New Issue
Block a user