45 lines
1.6 KiB
Smarty
45 lines
1.6 KiB
Smarty
<div class="panel-body body">
|
|
<div id="msg-box" class="alert hide"></div>
|
|
<form id="nav">
|
|
<div class="row">
|
|
<div class=" col-md-12">
|
|
<div class="row">
|
|
<div class="cell cell-website col-sm-12 form-group">
|
|
<div class="field field-website">
|
|
<textarea rows="16" class="license-field form-control">{$license}</textarea>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="cell cell-website form-group">
|
|
<label class="point-lbl" for="license-agree" style="user-select: none;">
|
|
<input
|
|
type="checkbox"
|
|
name="license-agree"
|
|
id="license-agree"
|
|
class="input-checkbox form-checkbox"
|
|
value="1"
|
|
{if $fields['license-agree'].value}checked="checked"{/if}
|
|
>
|
|
{$langs['labels']['I accept the agreement']}
|
|
</label>
|
|
</div>
|
|
</form>
|
|
|
|
</div>
|
|
<footer class="modal-footer">
|
|
<button class="btn btn-default btn-s-wide pull-left" type="button" id="back">{$langs['labels']['Back']}</button>
|
|
<button class="btn btn-primary btn-s-wide" type="button" id="next">{$langs['labels']['Next']}</button>
|
|
</footer>
|
|
<script>
|
|
{literal}
|
|
$(function(){
|
|
{/literal}
|
|
var langs = {$langsJs};
|
|
{literal}
|
|
var installScript = new InstallScript({action: 'step1', langs: langs});
|
|
})
|
|
{/literal}
|
|
</script>
|