mirror of
https://github.com/flarum/framework.git
synced 2024-11-23 07:01:03 +08:00
95 lines
2.2 KiB
PHP
95 lines
2.2 KiB
PHP
<h2>Install Flarum</h2>
|
|
|
|
<p>Set up your forum by filling out your details below. If you have any trouble, get help on the <a href="https://flarum.org/docs/install.html" target="_blank">Flarum website</a>.</p>
|
|
|
|
<form method="post">
|
|
<div id="error" style="display:none"></div>
|
|
|
|
<div class="FormGroup">
|
|
<div class="FormField">
|
|
<label>Forum Title</label>
|
|
<input name="forumTitle">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="FormGroup">
|
|
<div class="FormField">
|
|
<label>MySQL Host</label>
|
|
<input name="mysqlHost" value="localhost">
|
|
</div>
|
|
|
|
<div class="FormField">
|
|
<label>MySQL Database</label>
|
|
<input name="mysqlDatabase">
|
|
</div>
|
|
|
|
<div class="FormField">
|
|
<label>MySQL Username</label>
|
|
<input name="mysqlUsername">
|
|
</div>
|
|
|
|
<div class="FormField">
|
|
<label>MySQL Password</label>
|
|
<input type="password" name="mysqlPassword">
|
|
</div>
|
|
|
|
<div class="FormField">
|
|
<label>Table Prefix</label>
|
|
<input type="text" name="tablePrefix">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="FormGroup">
|
|
<div class="FormField">
|
|
<label>Admin Username</label>
|
|
<input name="adminUsername">
|
|
</div>
|
|
|
|
<div class="FormField">
|
|
<label>Admin Email</label>
|
|
<input name="adminEmail">
|
|
</div>
|
|
|
|
<div class="FormField">
|
|
<label>Admin Password</label>
|
|
<input type="password" name="adminPassword">
|
|
</div>
|
|
|
|
<div class="FormField">
|
|
<label>Confirm Password</label>
|
|
<input type="password" name="adminPasswordConfirmation">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="FormButtons">
|
|
<button type="submit">Install Flarum</button>
|
|
</div>
|
|
</form>
|
|
|
|
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
<script>
|
|
$(function() {
|
|
$('form :input:first').select();
|
|
|
|
$('form').on('submit', function(e) {
|
|
e.preventDefault();
|
|
|
|
var $button = $(this).find('button')
|
|
.text('Please Wait...')
|
|
.prop('disabled', true);
|
|
|
|
$.post('', $(this).serialize())
|
|
.done(function() {
|
|
window.location.reload();
|
|
})
|
|
.fail(function(data) {
|
|
$('#error').show().text('Something went wrong:\n\n' + data.responseText);
|
|
|
|
$button.prop('disabled', false).text('Install Flarum');
|
|
});
|
|
|
|
return false;
|
|
});
|
|
});
|
|
</script>
|