]> git.mxchange.org Git - friendica.git/blob - view/templates/install_db.tpl
Adding basepath, urlpath, hostname and ssl_policy to installation
[friendica.git] / view / templates / install_db.tpl
1 <h1><img src="{{$baseurl}}/images/friendica-32.png"> {{$title}}</h1>
2 <h2>{{$pass}}</h2>
3
4 <p>
5         {{$info_01}}<br>
6         {{$info_02}}<br>
7         {{$info_03}}
8 </p>
9
10 <table>
11         {{foreach $checks as $check}}
12         <tr><td>{{$check.title}} </td><td>
13                         {{if ! $check.status}}
14                         <img src="{{$baseurl}}/view/install/red.png" alt="Requirement not satisfied">
15                         {{/if}}
16         {{/foreach}}
17 </table>
18
19 <form id="install-form" action="{{$baseurl}}/install" method="post">
20
21         <input type="hidden" name="config-php_path" value="{{$php_path}}" />
22         <input type="hidden" name="config-hostname" value="{{$hostname}}" />
23         <input type="hidden" name="system-ssl_policy" value="{{$ssl_policy}}" />
24         <input type="hidden" name="system-basepath" value="{{$basepath}}" />
25         <input type="hidden" name="system-urlpath" value="{{$urlpath}}" />
26         <input type="hidden" name="pass" value="4" />
27
28         {{include file="field_input.tpl" field=$dbhost}}
29         {{include file="field_input.tpl" field=$dbuser}}
30         {{include file="field_password.tpl" field=$dbpass}}
31         {{include file="field_input.tpl" field=$dbdata}}
32
33         <input id="install-submit" type="submit" name="submit" value="{{$submit}}" />
34
35 </form>