mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Move v1 views
This commit is contained in:
24
resources/views/install/index.twig
Normal file
24
resources/views/install/index.twig
Normal file
@@ -0,0 +1,24 @@
|
||||
{% extends "./v1/layout/install" %}
|
||||
|
||||
{% block content %}
|
||||
<div class="login-box-body">
|
||||
<p class="login-box-msg">Please wait...</p>
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div id="status-box" style="border:1px #ddd solid;padding:5px;">
|
||||
<span class="fa fa-spin fa-spinner"></span> Waiting to start...
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
{% block scripts %}
|
||||
<script type="text/javascript" nonce="{{ JS_NONCE }}">
|
||||
var token = '{{ csrf_token() }}';
|
||||
var index = 0;
|
||||
var runCommandUri = '{{ route('installer.runCommand') }}';
|
||||
var homeUri = '{{ route('flush') }}';
|
||||
</script>
|
||||
<script type="text/javascript" src="v1/js/ff/install/index.js" nonce="{{ JS_NONCE }}"></script>
|
||||
{% endblock %}
|
||||
|
Reference in New Issue
Block a user