mirror of
https://github.com/easy-wi/developer.git
synced 2025-02-20 11:23:28 +08:00
51 lines
2.1 KiB
Smarty
51 lines
2.1 KiB
Smarty
<section class="content-header">
|
|
<h1><?php echo $gsprache->voiceserver;?> Token <?php echo $gsprache->add;?></h1>
|
|
<ol class="breadcrumb">
|
|
<li><a href="userpanel.php"><i class="fa fa-home"></i> Home</a></li>
|
|
<li><a href="userpanel.php?w=vo"><i class="fa fa-microphone"></i> <?php echo $gsprache->voiceserver;?></a></li>
|
|
<li><a href="userpanel.php?w=vo&d=pk&id=<?php echo $id;?>"><i class="fa fa-key"></i> Token</a></li>
|
|
<li><?php echo $gsprache->add;?></li>
|
|
<li class="active"><?php echo $address;?></li>
|
|
</ol>
|
|
</section>
|
|
|
|
|
|
<section class="content">
|
|
|
|
<?php if($userWantsHelpText=='Y'){ ?>
|
|
<div class="row hidden-xs">
|
|
<div class="col-md-12">
|
|
<div class="alert alert-info alert-dismissable">
|
|
<i class="fa fa-info"></i>
|
|
<?php echo $sprache->help_voiceserver_key;?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="box box-success">
|
|
<form role="form" action="userpanel.php?w=vo&d=pk&id=<?php echo $id;?>&r=vo" onsubmit="return confirm('<?php echo $gsprache->sure;?>');" method="post">
|
|
|
|
<input type="hidden" name="action" value="ad">
|
|
|
|
<div class="box-body">
|
|
<div class="form-group">
|
|
<label for="groupname"><?php echo $sprache->groupname;?></label>
|
|
<select class="form-control" id="groupname" name="group">
|
|
<?php foreach ($servergroups as $id => $name) { ?>
|
|
<option value="<?php echo $id; ?>"><?php echo $name; ?></option>
|
|
<?php } ?>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="box-footer">
|
|
<button class="btn btn-success" id="inputEdit" type="submit"><i class="fa fa-plus-circle"></i> <?php echo $gsprache->add;?></button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section> |