improved styling and logout button
This commit is contained in:
parent
3d9c710985
commit
9fd841229b
12 changed files with 88 additions and 93 deletions
|
|
@ -1,19 +1,12 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
{{template "head.html" .}} <!-- Include header template -->
|
||||
{{ template "preamble.html" }}
|
||||
<h1>Add Trainer</h1>
|
||||
<form action="/trainers/add" method="POST">
|
||||
<label for="name">Name:</label>
|
||||
<input type="text" id="name" name="name" required><br><br>
|
||||
|
||||
<body>
|
||||
{{template "header.html" .}}
|
||||
<h1>Add Trainer</h1>
|
||||
<a href="/">Back to Home</a>
|
||||
<form action="/trainers/add" method="POST">
|
||||
<label for="name">Name:</label>
|
||||
<input type="text" id="name" name="name" required><br><br>
|
||||
<label for="email">Email:</label>
|
||||
<input type="email" id="email" name="email" required><br><br>
|
||||
|
||||
<label for="email">Email:</label>
|
||||
<input type="email" id="email" name="email" required><br><br>
|
||||
|
||||
<button type="submit">Add Trainer</button>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
<button type="submit">Add Trainer</button>
|
||||
</form>
|
||||
{{template "epilogue.html" }}
|
||||
|
|
@ -1,18 +1,8 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
{{template "head.html" .}} <!-- Include header template -->
|
||||
|
||||
<body>
|
||||
{{template "header.html" .}}
|
||||
{{ template "preamble.html" }}
|
||||
<h1>Add New Training Area</h1>
|
||||
<form action="/training-areas/add" method="post">
|
||||
<label for="name">Training Area Name:</label>
|
||||
<input type="text" id="name" name="name" required>
|
||||
<button type="submit">Add</button>
|
||||
</form>
|
||||
<br>
|
||||
<a href="/training-areas">Back to Training Areas</a>
|
||||
<br><br>
|
||||
<a href="/">Back to Home</a>
|
||||
</body>
|
||||
</html>
|
||||
{{template "epilogue.html" }}
|
||||
|
|
@ -12,19 +12,53 @@
|
|||
|
||||
header {
|
||||
background-color: #06041f;
|
||||
color: #fff;
|
||||
padding: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
header img {
|
||||
width: 150px;
|
||||
.header-content {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.logo {
|
||||
width: 50px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
header h1 {
|
||||
flex-grow: 1;
|
||||
margin: 0;
|
||||
font-size: 2em;
|
||||
color: #47d7ac;
|
||||
}
|
||||
|
||||
.nav-buttons a {
|
||||
text-decoration: none;
|
||||
margin: 0 10px;
|
||||
padding: 10px 20px;
|
||||
background-color: #47d7ac;
|
||||
color: #fff;
|
||||
border-radius: 5px;
|
||||
font-weight: bold;
|
||||
transition: background-color 0.3s ease;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.nav-buttons a:hover {
|
||||
background-color: #35a895;
|
||||
}
|
||||
|
||||
.nav-buttons i {
|
||||
margin-right: 8px;
|
||||
}
|
||||
|
||||
/* home */
|
||||
.tiles ul {
|
||||
list-style-type: none;
|
||||
|
|
@ -88,7 +122,7 @@
|
|||
|
||||
button {
|
||||
background-color: #47d7ac;
|
||||
color: #fff;
|
||||
color: #06041f;
|
||||
padding: 8px 16px;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
|
|
@ -98,4 +132,9 @@
|
|||
button:hover {
|
||||
background-color: #35a895;
|
||||
}
|
||||
|
||||
.main {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
</style>
|
||||
3
templates/epilogue.html
Normal file
3
templates/epilogue.html
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,4 +1,10 @@
|
|||
<header>
|
||||
<img src="logo.png" alt="Training Management Logo">
|
||||
<h1>Nagarro Training Solutions</h1>
|
||||
<div class="header-content">
|
||||
<img src="logo.png" alt="Training Management Logo" class="logo">
|
||||
<h1>Nagarro Training Solutions</h1>
|
||||
<nav class="nav-buttons">
|
||||
<a href="/" class="btn"><i class="fas fa-home"></i> Home</a>
|
||||
<a href="/logout" class="btn"><i class="fas fa-sign-out-alt"></i> Logout</a>
|
||||
</nav>
|
||||
</div>
|
||||
</header>
|
||||
|
|
@ -1,9 +1,4 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
{{template "head.html" .}} <!-- Include header template -->
|
||||
|
||||
<body>
|
||||
{{template "header.html" .}}
|
||||
{{ template "preamble.html" }}
|
||||
<h1>Welcome to the Training Management System</h1>
|
||||
<div class="tiles">
|
||||
<ul>
|
||||
|
|
@ -29,5 +24,4 @@
|
|||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
{{template "epilogue.html" }}
|
||||
|
|
|
|||
|
|
@ -1,9 +1,4 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
{{template "head.html" .}} <!-- Include header template -->
|
||||
|
||||
<body>
|
||||
{{template "header.html" .}}
|
||||
{{ template "preamble.html" }}
|
||||
<h2>Please log in to continue</h2>
|
||||
<form action="/login" method="POST">
|
||||
<label for="username">Username:</label>
|
||||
|
|
@ -14,5 +9,4 @@
|
|||
|
||||
<button type="submit">Login</button>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
{{template "epilogue.html" }}
|
||||
7
templates/preamble.html
Normal file
7
templates/preamble.html
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
{{template "head.html" .}} <!-- Include header template -->
|
||||
|
||||
<body>
|
||||
{{template "header.html" .}}
|
||||
<div class="main">
|
||||
|
|
@ -1,9 +1,4 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
{{template "head.html" .}} <!-- Include header template -->
|
||||
|
||||
<body>
|
||||
{{template "header.html" .}}
|
||||
{{ template "preamble.html" }}
|
||||
<h2>Setup Admin Account</h2>
|
||||
<form method="post">
|
||||
<label>Name:</label>
|
||||
|
|
@ -16,5 +11,4 @@
|
|||
|
||||
<button type="submit">Create Admin</button>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
{{template "epilogue.html" }}
|
||||
|
|
@ -1,13 +1,6 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
{{template "head.html" .}} <!-- Include header template -->
|
||||
|
||||
<body>
|
||||
{{template "header.html" .}}
|
||||
|
||||
{{ template "preamble.html" }}
|
||||
<h1>Trainers</h1>
|
||||
<a href="/">Back to Home</a>
|
||||
<a href="/trainers/add">Add Trainer</a>
|
||||
<a href="/trainers/add"><button>Add Trainer</button></a>
|
||||
<table border="1">
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
|
|
@ -20,5 +13,4 @@
|
|||
</tr>
|
||||
{{ end }}
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
{{template "epilogue.html" }}
|
||||
|
|
@ -1,12 +1,6 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
{{template "head.html" .}} <!-- Include header template -->
|
||||
|
||||
<body>
|
||||
{{template "header.html" .}}
|
||||
|
||||
{{ template "preamble.html" }}
|
||||
<h1>Training Areas</h1>
|
||||
<a href="/training-areas/add">Add Training Area</a>
|
||||
<a href="/training-areas/add"><button>Add Training Area</button></a>
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
|
|
@ -34,8 +28,4 @@
|
|||
{{end}}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<a href="/">Back to Home</a>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
{{template "epilogue.html" }}
|
||||
|
|
@ -1,11 +1,5 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
{{template "head.html" .}} <!-- Include header template -->
|
||||
|
||||
<body>
|
||||
{{template "header.html" .}}
|
||||
{{ template "preamble.html" }}
|
||||
<h1>Trainings</h1>
|
||||
<a href="/">Back to Home</a>
|
||||
<table border="1">
|
||||
<tr>
|
||||
<th>Title</th>
|
||||
|
|
@ -26,5 +20,4 @@
|
|||
</tr>
|
||||
{{ end }}
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
{{template "epilogue.html" }}
|
||||
Loading…
Add table
Reference in a new issue