%PDF- %PDF-
| Direktori : /opt/pyxsoft/templates/ |
| Current File : //opt/pyxsoft/templates/license.tmpl |
{% extends "template-base/index.tmpl" %}
{% block HTMLTitle %}{{ HTMLTitle }}{% endblock %}
{% block PageTitle %}{{ PageTitle }}{% endblock %}
{% block contenido %}
{% if !license.IsValid %}
<div class="row">
<div class='error col-md-6'>
{% if license.LicenseCode=="TRIAL" %}
{{ Tr(Lang,"license.trialExpired") }}
{% else %}
<b>{{ Tr(Lang,"license.errorValidating",license.LicenseCode) }}</b><br>
{{ Tr(Lang,"license.status") }} {{ license.Status }} - {{ license.StatusMessage }}<br>
{{ Tr(Lang,"license.pverify") }}
{% endif %}
</div>
</div>
<div class="row">
<div class="col-md-6">
<form class="" method="post" action="license/newcode">
<fieldset class="form-group">
<label for="code">{{ Tr(Lang,"license.enternewcode") }}</label>
<div class="input-group" style="border: 1px solid blue">
<input class="form-control" placeholder="" type="text" name="code" />
<span class="input-group-btn">
<button id="btnValidar" type="submit" class="btn btn-primary">{{ Tr(Lang,"license.validate") }}</button>
</span>
</div>
</fieldset>
</form>
</div>
</div>
{% if license.TrialAvailable %}
<div class="row">
<div class="col-md-6">
<p class="m-t-3" style="text-align: center">{{ Tr(Lang,"license.orStartFreeTrial") }}</p>
<p style="text-align: center"><a class="btn btn-primary" href="/license/newtrial">{{ Tr(Lang,"license.startTrial") }}</a></p>
</div>
</div>
{% endif %}
{% else %}
<div class="panel panel-info">
<div class="panel-heading" style="height: 90px;">
<h2>{{Tr(Lang,"license.licenseOkTitle")}}</h2>
</div>
<div class="panel-body">
<div class="row">
<div class="col-md-3 col-lg-3 " align="center"><img src="/images/logo.jpg" style="position: relative;max-height: 100px; margin-top:5%;"></div>
<div class=" col-md-9 col-lg-9 ">
<table class="table table-user-information">
<tbody>
<tr>
<td>{{Tr(Lang,"license.status")}}</td>
<td>{{ license.Status }}</td>
</tr>
<tr>
<td>{{Tr(Lang,"license.customerName") }}</td>
<td>{{ license.customerName }}</td>
</tr>
<tr>
<td>{{Tr(Lang,"license.expirationDate") }}</td>
<td>{{ license.ExpirationDate }}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<hr>
<div class="row">
<div class="col-md-6">
<form class="" method="post" action="license/newcode">
<fieldset class="form-group">
<label for="code">{{ Tr(Lang,"license.changecode") }}</label>
<div class="input-group" style="border: 1px solid blue">
<input class="form-control" placeholder="" type="text" name="code" />
<span class="input-group-btn">
<button id="btnValidar" type="submit" class="btn btn-primary">{{ Tr(Lang,"license.validate") }}</button>
</span>
</div>
</fieldset>
</form>
</div>
</div>
{% endif %}
{% endblock %}
{% block finalScripts %}
{% endblock %}