This commit is contained in:
Olusesan Ameye
2021-01-31 13:22:28 -05:00
parent 71915414c7
commit fbf04adb9a
18 changed files with 1442 additions and 317 deletions
+37 -1
View File
@@ -6,6 +6,9 @@ if (!isset($facility_image) || $facility_image == '') {
if (!isset($facility_text) || $facility_text == '') {
$facility_text = "Merms Providers";
}
$registeration_completed = isset($loginReturn)?$loginReturn :false;
?>
<!-- begin app -->
<div class="app">
@@ -28,8 +31,33 @@ if (!isset($facility_text) || $facility_text == '') {
<div class="row no-gutters">
<div class="col-sm-6 col-lg-5 col-xxl-3 align-self-center order-2 order-sm-1">
<div class="d-flex align-items-center h-100-vh">
<div class="register p-5">
<h1 class="mb-2">Merms Providers</h1>
<h1 class="mb-2">Merms Providers</h1>
<?php
if ($registeration_completed == true ){
?>
<div class="row">
<div class="col-12">
<div class="form-group">
<label class="control-label">
You have successfully created your MERMS account, We have started provisioning your account with all the tools you will need. Please check your email in a few minutes.
<br>
<a href='/welcome'> go to the login</a>
</label>
</div>
</div>
</div>
<?
}
else
{
?>
<p>Welcome, Please create your account.</p>
<form action="/register/startacc" method='POST' class="mt-2 mt-sm-5">
<div class="row">
@@ -87,6 +115,14 @@ if (!isset($facility_text) || $facility_text == '') {
</div>
</div>
</form>
<?
}
?>
</div>
</div>
</div>