mirror of
https://github.com/easy-wi/developer.git
synced 2025-02-20 11:23:28 +08:00
56 lines
2.4 KiB
Smarty
56 lines
2.4 KiB
Smarty
<section class="content-header">
|
|
<h1><?php echo $gsprache->webspace;?></h1>
|
|
<ol class="breadcrumb">
|
|
<li><a href="userpanel.php"><i class="fa fa-home"></i> Home</a></li>
|
|
<li><a href="userpanel.php?w=wv"><i class="fa fa-cubes"></i> <?php echo $gsprache->webspace;?></a></li>
|
|
<li><i class="fa fa-lock"></i> <?php echo $sprache->ftpPassword;?></li>
|
|
<li class="active"><?php echo $dns;?></li>
|
|
</ol>
|
|
</section>
|
|
|
|
|
|
<section class="content">
|
|
|
|
<?php if (count($errors)>0){ ?>
|
|
<div class="box box-danger">
|
|
<div class="box-header">
|
|
<i class="fa fa-warning"></i>
|
|
<h3 class="box-title"><?php echo $gsprache->errors;?></h3>
|
|
</div>
|
|
<div class="box-body">
|
|
<div class="alert alert-danger alert-dismissable">
|
|
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
|
<b><?php echo $gsprache->errors;?>:</b> <?php echo implode(', ',$errors);?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php }?>
|
|
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="box box-primary">
|
|
<form role="form" action="userpanel.php?w=wv&d=pw&id=<?php echo $id;?>&r=wv" onsubmit="return confirm('<?php echo $gsprache->sure;?>');" method="post">
|
|
|
|
<input type="hidden" name="token" value="<?php echo token();?>">
|
|
<input type="hidden" name="action" value="pw">
|
|
|
|
<div class="box-body">
|
|
<div class="form-group">
|
|
<label for="inputPassword1"><?php echo $sprache->ftpPassword;?></label>
|
|
<input class="form-control" id="inputPassword1" type="password" name="password1" value="" maxlength="40">
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="inputPassword2"><?php echo $sprache->ftpPasswordRepeat;?></label>
|
|
<input class="form-control" id="inputPassword2" type="password" name="password2" value="" maxlength="40">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="box-footer">
|
|
<button class="btn btn-primary" id="inputEdit" type="submit"><i class="fa fa-save"></i> <?php echo $gsprache->save;?></button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section> |