some love for the installer
This commit is contained in:
@@ -1,40 +0,0 @@
|
||||
#install-dbhost-label,
|
||||
#install-dbuser-label,
|
||||
#install-dbpass-label,
|
||||
#install-dbdata-label,
|
||||
#install-tz-desc {
|
||||
float: left;
|
||||
width: 250px;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
|
||||
}
|
||||
|
||||
#install-dbhost,
|
||||
#install-dbuser,
|
||||
#install-dbpass,
|
||||
#install-dbdata {
|
||||
float: left;
|
||||
width: 200px;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
#install-dbhost-end,
|
||||
#install-dbuser-end,
|
||||
#install-dbpass-end,
|
||||
#install-dbdata-end,
|
||||
#install-tz-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
#install-form select#timezone_select {
|
||||
float: left;
|
||||
margin-top: 18px;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
main {
|
||||
max-width: 790px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
@@ -1,2 +0,0 @@
|
||||
<?php
|
||||
App::$page['template'] = 'full';
|
||||
2
view/php/mod_setup.php
Normal file
2
view/php/mod_setup.php
Normal file
@@ -0,0 +1,2 @@
|
||||
<?php
|
||||
App::$page['template'] = 'zen';
|
||||
@@ -1,9 +1,15 @@
|
||||
<h1>{{$title}}</h1>
|
||||
<h2>{{$pass}}</h2>
|
||||
<div class="container mt-4 mb-4">
|
||||
<div class="jumbotron">
|
||||
<h1>{{$title}}</h1>
|
||||
<hr class="my-4">
|
||||
<h2><i class="fa fa-{{$icon}}"></i> {{$pass}}</h2>
|
||||
</div>
|
||||
|
||||
{{if $status}}
|
||||
<div class="alert alert-danger">{{$status}}</div>
|
||||
{{/if}}
|
||||
|
||||
{{if $status}}
|
||||
<h3 class="error-message">{{$status}}</h3>
|
||||
{{/if}}
|
||||
|
||||
{{$text}}
|
||||
<div class="alert alert-info">{{$text}}</div>
|
||||
<br>
|
||||
{{$what_next}}
|
||||
</div>
|
||||
|
||||
@@ -1,24 +1,29 @@
|
||||
<h1>{{$title}}</h1>
|
||||
<h2>{{$pass}}</h2>
|
||||
<form action="{{$baseurl}}/index.php?q=setup" method="post">
|
||||
<table>
|
||||
{{foreach $checks as $check}}
|
||||
<tr><td>{{$check.title}} </td><td><i class="fa {{if $check.status}}fa-check-square-o{{else}}{{if $check.required}}fa-square-o{{else}}fa-exclamation{{/if}}{{/if}}"></i></td><td>{{if $check.required}}(required){{/if}}</td></tr>
|
||||
{{if $check.help}}
|
||||
<tr><td colspan="3"><blockquote>{{$check.help}}</blockquote></td></tr>
|
||||
{{/if}}
|
||||
{{/foreach}}
|
||||
</table>
|
||||
<div class="container mt-4 mb-4">
|
||||
<div class="jumbotron">
|
||||
<h1>{{$title}}</h1>
|
||||
<hr class="my-4">
|
||||
<h2><i class="fa fa-heartbeat"></i> {{$pass}}</h2>
|
||||
</div>
|
||||
<form action="{{$baseurl}}/index.php?q=setup" method="post">
|
||||
<table class="table">
|
||||
{{foreach $checks as $check}}
|
||||
<tr><td{{if ! $check.status}} class="text-danger"{{/if}}>{{$check.title}}</td><td><i class="fa {{if $check.status}}fa-check-square-o{{else}}{{if $check.required}}fa-square-o{{else}}fa-exclamation text-danger{{/if}}{{/if}}"></i></td><td>{{if $check.required}}(required){{/if}}</td></tr>
|
||||
{{if $check.help}}
|
||||
<tr><td colspan="3" class="border-top-0 pt-0 pb-0"><div class="alert alert-info">{{$check.help}}</div></td></tr>
|
||||
{{/if}}
|
||||
{{/foreach}}
|
||||
</table>
|
||||
|
||||
{{if $phpath}}
|
||||
<input type="hidden" name="phpath" value="{{$phpath}}">
|
||||
{{/if}}
|
||||
{{if $phpath}}
|
||||
<input type="hidden" name="phpath" value="{{$phpath}}">
|
||||
{{/if}}
|
||||
|
||||
{{if $passed}}
|
||||
<input type="hidden" name="pass" value="2">
|
||||
<input type="submit" value="{{$next}}">
|
||||
{{else}}
|
||||
<input type="hidden" name="pass" value="1">
|
||||
<input type="submit" value="{{$reload}}">
|
||||
{{/if}}
|
||||
</form>
|
||||
{{if $passed}}
|
||||
<input type="hidden" name="pass" value="2">
|
||||
<button class="btn btn-success" type="submit"><i class="fa fa-check"></i> {{$next}}</button>
|
||||
{{else}}
|
||||
<input type="hidden" name="pass" value="1">
|
||||
<button class="btn btn-warning" type="submit"><i class="fa fa-refresh"></i> {{$reload}}</button>
|
||||
{{/if}}
|
||||
</form>
|
||||
</div>
|
||||
|
||||
@@ -1,30 +1,31 @@
|
||||
<h1>{{$title}}</h1>
|
||||
<h2>{{$pass}}</h2>
|
||||
<div class="container mt-4 mb-4">
|
||||
<div class="jumbotron">
|
||||
<h1>{{$title}}</h1>
|
||||
<hr class="my-4">
|
||||
<h2><i class="fa fa-database"></i> {{$pass}}</h2>
|
||||
</div>
|
||||
<div class="alert alert-info">
|
||||
{{$info_01}}<br>
|
||||
{{$info_02}}<br>
|
||||
{{$info_03}}
|
||||
</div>
|
||||
|
||||
{{if $status}}
|
||||
<div class="alert alert-danger">{{$status}}</div>
|
||||
{{/if}}
|
||||
|
||||
<p>
|
||||
{{$info_01}}<br>
|
||||
{{$info_02}}<br>
|
||||
{{$info_03}}
|
||||
</p>
|
||||
<form id="install-form" action="{{$baseurl}}/setup" method="post">
|
||||
<input type="hidden" name="phpath" value="{{$phpath}}" />
|
||||
<input type="hidden" name="pass" value="3" />
|
||||
|
||||
{{if $status}}
|
||||
<h3 class="error-message">{{$status}}</h3>
|
||||
{{/if}}
|
||||
{{include file="field_input.tpl" field=$dbhost}}
|
||||
{{include file="field_input.tpl" field=$dbport}}
|
||||
{{include file="field_input.tpl" field=$dbuser}}
|
||||
{{include file="field_password.tpl" field=$dbpass}}
|
||||
{{include file="field_input.tpl" field=$dbdata}}
|
||||
{{include file="field_select.tpl" field=$dbtype}}
|
||||
|
||||
<form id="install-form" action="{{$baseurl}}/setup" method="post">
|
||||
|
||||
<input type="hidden" name="phpath" value="{{$phpath}}" />
|
||||
<input type="hidden" name="pass" value="3" />
|
||||
|
||||
{{include file="field_input.tpl" field=$dbhost}}
|
||||
{{include file="field_input.tpl" field=$dbport}}
|
||||
{{include file="field_input.tpl" field=$dbuser}}
|
||||
{{include file="field_password.tpl" field=$dbpass}}
|
||||
{{include file="field_input.tpl" field=$dbdata}}
|
||||
{{include file="field_select.tpl" field=$dbtype}}
|
||||
|
||||
<input id="install-submit" type="submit" name="submit" value="{{$submit}}" />
|
||||
|
||||
</form>
|
||||
<button class="btn btn-primary" id="install-submit" type="submit" name="submit" value="{{$submit}}">{{$submit}}</button>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -1,28 +1,28 @@
|
||||
<h1>{{$title}}</h1>
|
||||
<h2>{{$pass}}</h2>
|
||||
<div class="container mt-4 mb-4">
|
||||
<div class="jumbotron">
|
||||
<h1>{{$title}}</h1>
|
||||
<hr class="my-4">
|
||||
<h2><i class="fa fa-cogs"></i> {{$pass}}</h2>
|
||||
</div>
|
||||
|
||||
{{if $status}}
|
||||
<div class="alert alert-danger">{{$status}}</div>
|
||||
{{/if}}
|
||||
|
||||
{{if $status}}
|
||||
<h3 class="error-message">{{$status}}</h3>
|
||||
{{/if}}
|
||||
<form id="install-form" action="{{$baseurl}}/setup" method="post">
|
||||
<input type="hidden" name="phpath" value="{{$phpath}}" />
|
||||
<input type="hidden" name="dbhost" value="{{$dbhost}}" />
|
||||
<input type="hidden" name="dbport" value="{{$dbport}}" />
|
||||
<input type="hidden" name="dbuser" value="{{$dbuser}}" />
|
||||
<input type="hidden" name="dbpass" value="{{$dbpass}}" />
|
||||
<input type="hidden" name="dbdata" value="{{$dbdata}}" />
|
||||
<input type="hidden" name="dbtype" value="{{$dbtype}}" />
|
||||
<input type="hidden" name="pass" value="4" />
|
||||
|
||||
<form id="install-form" action="{{$baseurl}}/setup" method="post">
|
||||
|
||||
<input type="hidden" name="phpath" value="{{$phpath}}" />
|
||||
<input type="hidden" name="dbhost" value="{{$dbhost}}" />
|
||||
<input type="hidden" name="dbport" value="{{$dbport}}" />
|
||||
<input type="hidden" name="dbuser" value="{{$dbuser}}" />
|
||||
<input type="hidden" name="dbpass" value="{{$dbpass}}" />
|
||||
<input type="hidden" name="dbdata" value="{{$dbdata}}" />
|
||||
<input type="hidden" name="dbtype" value="{{$dbtype}}" />
|
||||
<input type="hidden" name="pass" value="4" />
|
||||
|
||||
{{include file="field_input.tpl" field=$adminmail}}
|
||||
{{include file="field_input.tpl" field=$siteurl}}
|
||||
|
||||
{{include file="field_select_grouped.tpl" field=$timezone}}
|
||||
|
||||
<input id="install-submit" type="submit" name="submit" value="{{$submit}}" />
|
||||
|
||||
</form>
|
||||
{{include file="field_input.tpl" field=$adminmail}}
|
||||
{{include file="field_input.tpl" field=$siteurl}}
|
||||
{{include file="field_select_grouped.tpl" field=$timezone}}
|
||||
|
||||
<button class="btn btn-primary" id="install-submit" type="submit" name="submit" value="{{$submit}}">{{$submit}}</button>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user