Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion frontend/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@
crossorigin="anonymous"
></script>

<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">

<!-- Page Name -->
<title>FallSafe</title>

Expand Down Expand Up @@ -64,7 +69,7 @@
<!-- Main Content Container -->
<div class="container text-center">
<div class="row justify-content-center">
<div class="col-12 mt-5">
<div class="col-12 fade-in" style="margin-top: 4.5rem;">
<!-- Load customAlert.html dynamically -->
<div id="customAlertContainer"></div>

Expand Down
9 changes: 7 additions & 2 deletions frontend/adminLogin.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@
crossorigin="anonymous"
></script>

<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">

<!-- Page Name -->
<title>FallSafe</title>

Expand Down Expand Up @@ -64,7 +69,7 @@
<!-- Main Content Container -->
<div class="container text-center">
<div class="row justify-content-center">
<div class="col-12 mt-5">
<div class="col-12 fade-in" style="margin-top: 4.5rem;">
<!-- Load customAlert.html dynamically -->
<div id="customAlertContainer"></div>

Expand Down Expand Up @@ -102,7 +107,7 @@ <h1>Admin Login</h1>
</form>
</div>
<!-- Sign Up Link Outside Card -->
<p class="mt-3">
<p class="mt-5">
New here? <a href="./signup.html">Sign up</a> to join FallSafe!
</p>
<p><a href="./login.html">Back</a></p>
Expand Down
2 changes: 1 addition & 1 deletion frontend/css/login.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.card {
margin-top: 60px !important;
margin-top: 35px !important;
}

#userBadge,
Expand Down
63 changes: 63 additions & 0 deletions frontend/css/signUp.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
.step-container {
display: none;
}
.step-container.active {
display: block;
}
.steps-progress {
display: flex;
justify-content: space-between;
margin-bottom: 30px;
}
.step-indicator {
width: 30px;
height: 30px;
border-radius: 50%;
background-color: #e9ecef;
display: flex;
align-items: center;
justify-content: center;
position: relative;
z-index: 2;
}
.step-indicator.active {
background-color: #0d6efd;
color: white;
}
.step-indicator.completed {
background-color: #198754;
color: white;
}
.step-connector {
flex-grow: 1;
height: 3px;
background-color: #e9ecef;
margin: auto 10px;
}
.step-connector.active {
background-color: #198754;
}
.form-error {
color: #dc3545;
font-size: 0.875rem;
margin-top: 0.25rem;
display: none;
}

.btn-success {
display: inline-flex !important;
align-items: center !important;
justify-content: center !important;
background-color: #28a745 !important; /* Updated background color */
color: white !important; /* Ensures text color is white */
font-weight: 600 !important;
border: none !important;
padding: 15px 35px !important;
font-size: 1.1rem !important;
border-radius: 50px !important;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
transition: var(--transition) !important;
text-transform: uppercase;
letter-spacing: 1px;
}

Loading