mitrobill/ui/theme/default/language-add.tpl
2017-03-11 02:51:06 +07:00

40 lines
1.5 KiB
Smarty

{include file="sections/header.tpl"}
<div class="row">
<div class="col-sm-12 col-md-12">
<div class="panel panel-default panel-hovered panel-stacked mb30">
<div class="panel-heading">{$_L['Add_Plan']}</div>
<div class="panel-body">
<form class="form-horizontal" method="post" role="form" action="{$_url}settings/lang-post" >
<div class="form-group">
<label class="col-md-2 control-label">{$_L['Name_Lang']}</label>
<div class="col-md-6">
<input type="text" class="form-control" id="name" name="name">
</div>
</div>
<div class="form-group">
<label class="col-md-2 control-label">{$_L['Folder_Lang']}</label>
<div class="col-md-6">
<input type="text" class="form-control" id="folder" name="folder">
</div>
</div>
<div class="form-group">
<label class="col-md-2 control-label">{$_L['Translator']}</label>
<div class="col-md-6">
<input type="text" class="form-control" id="translator" name="translator">
</div>
</div>
<div class="form-group">
<div class="col-lg-offset-2 col-lg-10">
<button class="btn btn-primary waves-effect waves-light" type="submit">{$_L['Save']}</button>
Or <a href="{$_url}settings/localisation">{$_L['Cancel']}</a>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
{include file="sections/footer.tpl"}