Various changes

mobile-friendly ui updates
admin user-edit bugfix
file cleanup
added searchFields
add blog search
remove unused code
add maintenance mode config
This commit is contained in:
Joey Kimsey
2025-01-30 13:11:02 -05:00
parent b5996dc7db
commit 5e621883ff
106 changed files with 1154 additions and 787 deletions

View File

@ -3,7 +3,7 @@
<div class="row justify-content-center">
<div class="col-md-10">
<legend class="my-3 text-center">Configure</legend>
<form action="" method="post" enctype="multipart/form-data">
<form method="post" enctype="multipart/form-data">
<fieldset>
<div class="mb-3 col-md-4 offset-md-4">
<label for="siteName" class="form-label">Site Name:</label>

View File

@ -1,38 +0,0 @@
{installer-nav}
<form action="" method="post" class="form-horizontal">
<legend>Install</legend>
<fieldset>
<div class="form-group">
<label for="siteName" class="col-lg-6 control-label">Site Name:</label>
<div class="col-lg-2">
<input class="form-control" type="text" name="siteName" id="siteName" value="{name}">
</div>
</div>
<div class="form-group">
<label for="dbHost" class="col-lg-6 control-label">Database Host:</label>
<div class="col-lg-2">
<input class="form-control" type="text" name="dbHost" id="dbHost" value="{dbHost}">
</div>
</div>
<div class="form-group">
<label for="dbName" class="col-lg-6 control-label">Database Name:</label>
<div class="col-lg-2">
<input class="form-control" type="text" name="dbName" id="dbName" value="{dbName}">
</div>
</div>
<div class="form-group">
<label for="dbUsername" class="col-lg-6 control-label">Database Username:</label>
<div class="col-lg-2">
<input class="form-control" type="text" name="dbUsername" id="dbUsername" value="{dbUsername}">
</div>
</div>
<div class="form-group">
<label for="dbPassword" class="col-lg-6 control-label">Database Password:</label>
<div class="col-lg-2">
<input class="form-control" type="password" name="dbPassword" id="dbPassword">
</div>
</div>
</fieldset>
<input type="hidden" name="token" value="{TOKEN}">
<button class="btn btn-lg btn-primary center-block" type="submit" name="submit" value="submit">Install</button><br>
</form>

View File

@ -3,7 +3,7 @@
<div class="row justify-content-center">
<div class="col-md-10">
<p class="my-4">All models are required for proper installation of The Tempus Project. In this step, we will add the database tables required for these models. In the next step, you'll be able to select which plugins you would like installed.</p>
<form action="" method="post" class="form-horizontal">
<form method="post">
<table class="table table-striped">
<thead>
<tr>

View File

@ -5,7 +5,7 @@
<p class="my-4">
The Tempus Project was built to utilize all of the plugins provided with the installer. You can choose not to enable any one of them, but it may negatively impact the operation of your site.
</p>
<form action="" method="post" class="form-horizontal">
<form method="post">
<table class="table table-striped">
<thead>
<tr>

View File

@ -5,7 +5,7 @@
<p class="my-4">
Some models such as groups will need additional database resources and configurations to function properly. In this step, we will install those features.
</p>
<form action="" method="post" class="">
<form method="post">
<input type="hidden" name="token" value="{TOKEN}">
<div class="text-center my-3">
<button class="btn btn-lg btn-primary center-block" type="submit" name="submit" value="submit">Install Resources</button>

View File

@ -7,7 +7,7 @@
<p>In this step, we will attempt to generate the appropriate files for Apache servers.</p>
<h3>Nginx Users</h3>
<p>If you are using Nginx, you will need to update your server's configuration manually. Please see the documentation, for convenience, an example configuration has been provided with TheTempusProject and can be found in the app/resources directory.</p>
<form action="" method="post" class="form-horizontal">
<form method="post">
<input type="hidden" name="token" value="{TOKEN}">
<div class="text-center">
<button class="btn btn-lg btn-primary center-block" type="submit" name="submit" value="submit">Generate</button><br>

View File

@ -2,7 +2,7 @@
{installer-nav}
<div class="row justify-content-center">
<div class="col-md-10 pt-4">
<form action="" method="post" class="form-horizontal">
<form method="post">
<fieldset>
<div class="mb-3 col-md-4 offset-md-4">
<label for="newUsername" class="form-label">Username:</label>

View File

@ -13,7 +13,7 @@
<li>mysql_pdo must be enabled</li>
</ul>
<div class="text-center">
<form action="" method="post" class="form-horizontal">
<form method="post">
<input type="hidden" name="token" value="{TOKEN}">
<button class="btn btn-lg btn-primary center-block" type="submit" name="submit" value="submit">Check</button><br>
</form>

View File

@ -7,7 +7,7 @@
<p>
This installer will guide you through the process of installing and configuring The Tempus Project. Do not forget to delete this file once you have completed installation.
</p>
<form action="" method="post">
<form method="post">
<input type="hidden" name="token" value="{TOKEN}">
<button class="btn btn-lg btn-primary center-block" type="submit" name="submit" id="submit" value="submit">Begin Installation</button><br>
</form>