register funktion
This commit is contained in:
@ -5,106 +5,8 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Lernplattform EMT/Paramedic</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" />
|
||||
<style>
|
||||
:root {
|
||||
--primary-color: #102037; /* Definieren Sie die primäre Farbe */
|
||||
--secondary-color: #f78b47; /* Definieren Sie die sekundäre Farbe */
|
||||
--link-default-color: #ffffff; /* Definieren Sie die Link-Hover-Farbe */
|
||||
--link-hover-color: #ffcc00; /* Definieren Sie die Link-Hover-Farbe */
|
||||
--link-active-color: #ffcc00; /* Definieren Sie die Link-Hover-Farbe */
|
||||
--background-color: #d4c4c4; /* Definieren Sie die Hintergrundfarbe */
|
||||
--nav-background-color: #102037; /* Definieren Sie die Hintergrundfarbe */
|
||||
--box-background-color: #102037;
|
||||
}
|
||||
body {
|
||||
color: #ffffff;
|
||||
background-color: var(--background-color);
|
||||
}
|
||||
.light {
|
||||
color: #cdcdcd;
|
||||
font-weight: 400;
|
||||
font-size: small;
|
||||
}
|
||||
.sidebar {
|
||||
height: 100%;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
background-color: var(--background-color);
|
||||
}
|
||||
.main-content {
|
||||
background-color: var(--background-color);
|
||||
}
|
||||
.profile-card,
|
||||
.story,
|
||||
.post,
|
||||
.who-to-follow,
|
||||
.news {
|
||||
background-color: var(--box-background-color);
|
||||
padding: 20px;
|
||||
border-radius: 15px;
|
||||
margin-bottom: 20px;
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
.headbar {
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
.profile-card img,
|
||||
.who-to-follow img {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
object-fit: cover;
|
||||
border-radius: 50%;
|
||||
}
|
||||
.story input {
|
||||
border-radius: 30px;
|
||||
}
|
||||
.story button {
|
||||
border-radius: 20px;
|
||||
}
|
||||
.post img {
|
||||
width: 100%;
|
||||
border-radius: 15px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
.who-to-follow button {
|
||||
border-radius: 20px;
|
||||
}
|
||||
.navbar {
|
||||
background-color: var(--nav-background-color);
|
||||
padding: 0;
|
||||
}
|
||||
.navbar-nav .nav-link {
|
||||
color: var(--link-default-color)
|
||||
}
|
||||
|
||||
.navbar-nav .nav-link:hover {
|
||||
color: var(--link-hover-color);
|
||||
}
|
||||
|
||||
.navbar-nav .nav-link.active {
|
||||
color: var(--link-active-color);
|
||||
}
|
||||
|
||||
a {
|
||||
color: #ffcc00;
|
||||
}
|
||||
a:hover {
|
||||
color: #c07427;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display:inline;
|
||||
width: 50px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.footer {
|
||||
background-color: var(--nav-background-color);
|
||||
padding: 0;
|
||||
box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
</style>
|
||||
<link href="../static/style.css" rel="stylesheet"/>
|
||||
<script src="../static/javascript.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@ -116,44 +18,7 @@
|
||||
<div class="col-12 col-md-3 sidebar mb-3">
|
||||
<div class="profile-card text-center p-3">
|
||||
|
||||
<!-- wenn logged out -->
|
||||
{% if not session['logged_in'] %}
|
||||
<h5>{{ user_name }}</h5>
|
||||
<p>Login oder <a href="#">Registrieren</a></p>
|
||||
<p class="light">Warum registrieren? Zum Schutz der Daten und dem Speichern deines Lernfortschrittes.</p>
|
||||
|
||||
<form>
|
||||
<div class="row mb-3">
|
||||
<label for="inputEmail3" class="col-sm-3 col-form-label">Benutzer</label>
|
||||
<div class="col-sm-8">
|
||||
<input type="email" class="form-control" id="inputEmail3">
|
||||
</div>
|
||||
</div>
|
||||
<div class="row mb-3">
|
||||
<label for="inputPassword3" class="col-sm-3 col-form-label">Password</label>
|
||||
<div class="col-sm-8">
|
||||
<input type="password" class="form-control" id="inputPassword3">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<button type="submit" class="btn btn-primary">Einloggen</button>
|
||||
</form>
|
||||
{% endif %}
|
||||
<!-- wenn logged out -->
|
||||
|
||||
<!-- wenn logged in -->
|
||||
{% if session['logged_in'] %}
|
||||
<!--<img src="https://via.placeholder.com/100" alt="Profile Picture" />-->
|
||||
<h5>{{ user_name }}</h5>
|
||||
<p>Web Developer at Webestica</p>
|
||||
<p class="light">I'd love to change the world, but they won’t give me the source code.</p>
|
||||
<div class="d-flex justify-content-around">
|
||||
<span>256 Posts</span>
|
||||
<span>2.5K Followers</span>
|
||||
<span>365 Following</span>
|
||||
</div>
|
||||
{% endif %}
|
||||
<!-- wenn logged in -->
|
||||
{% include 'block_login.html' %}
|
||||
|
||||
</div>
|
||||
<!--
|
||||
@ -172,97 +37,18 @@
|
||||
<!-- Main Content -->
|
||||
<div class="col-12 col-md-6 main-content mb-3">
|
||||
|
||||
<!-- Post a Story -->
|
||||
<!--
|
||||
<div class="story p-3">
|
||||
<div class="d-flex align-items-center">
|
||||
<img
|
||||
src="https://via.placeholder.com/50"
|
||||
class="rounded-circle me-3"
|
||||
alt="Profile Picture" />
|
||||
<input type="text" class="form-control" placeholder="Share your thoughts..." />
|
||||
</div>
|
||||
<div class="d-flex justify-content-around mt-3">
|
||||
<button class="btn btn-outline-primary">Photo</button>
|
||||
<button class="btn btn-outline-primary">Video</button>
|
||||
<button class="btn btn-outline-primary">Event</button>
|
||||
<button class="btn btn-outline-primary">Feeling/Activity</button>
|
||||
</div>
|
||||
</div>
|
||||
-->
|
||||
{% if not page or page == '' or page == 'index' %}
|
||||
{% include 'block_content_index.html' %}
|
||||
{% elif page == 'register' %}
|
||||
{% include 'block_register.html' %}
|
||||
{% endif %}
|
||||
|
||||
<!-- Posts -->
|
||||
<div class="post p-3">
|
||||
|
||||
<div class="d-flex">
|
||||
<img
|
||||
src="../static/images/logo.png"
|
||||
class="rounded-circle me-3"
|
||||
style="width: 300px; height: 300px;"
|
||||
alt="Profile Picture" />
|
||||
<div class="my-3">
|
||||
<h6>Lernplattform für <br>Rettungs- und Notfallsanitäter</h6>
|
||||
<p class="light" style="text-align: justify;">
|
||||
Willkommen auf unserer Lernplattform für Rettungssanitäter und Notfallsanitäter,
|
||||
basierend auf dem bewährten Kartensystem nach Leitner.
|
||||
Unsere Plattform bietet Dir die Möglichkeit,
|
||||
Deine Kenntnisse und Fähigkeiten effektiv zu vertiefen und zu erweitern. <br><br>
|
||||
Bei Interesse bist Du herzlich eingeladen, an der Entwicklung von Fragen und Aufgaben mitzuwirken.
|
||||
Unsere Plattform ist und bleibt kostenlos, um alle Mitarbeiter im Rettungsdienst bestmöglich zu unterstützen.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p class="mt-3">
|
||||
I'm thrilled to share that I've completed a graduate certificate course in project
|
||||
management with the president's honor roll.
|
||||
</p>
|
||||
<img src="https://via.placeholder.com/600x300" alt="Post Image" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Right Sidebar -->
|
||||
<div class="col-12 col-md-3 mb-3">
|
||||
<!-- Who to Follow -->
|
||||
<div class="who-to-follow p-3">
|
||||
<h6>Lernfelder</h6>
|
||||
<div class="d-flex align-items-center my-2">
|
||||
<img
|
||||
src="https://via.placeholder.com/50"
|
||||
class="rounded-circle me-3"
|
||||
alt="Profile Picture" />
|
||||
<div>
|
||||
<h6 class="mb-0">Anatomie</h6>
|
||||
<small class="light">RettSan</small>
|
||||
</div>
|
||||
<button class="btn btn-outline-primary ms-auto">+</button>
|
||||
</div>
|
||||
<div class="d-flex align-items-center my-2">
|
||||
<img
|
||||
src="https://via.placeholder.com/50"
|
||||
class="rounded-circle me-3"
|
||||
alt="Profile Picture" />
|
||||
<div>
|
||||
<h6 class="mb-0">Medikamente</h6>
|
||||
<small class="light">NotSan</small>
|
||||
</div>
|
||||
<button class="btn btn-outline-primary ms-auto">+</button>
|
||||
</div>
|
||||
<div class="d-flex align-items-center my-2">
|
||||
<img
|
||||
src="https://via.placeholder.com/50"
|
||||
class="rounded-circle me-3"
|
||||
alt="Profile Picture" />
|
||||
<div>
|
||||
<h6 class="mb-0">Herzkreislauf</h6>
|
||||
<small class="light">RettSan</small>
|
||||
</div>
|
||||
<button class="btn btn-outline-primary ms-auto">+</button>
|
||||
</div>
|
||||
<div class="text-center mt-3">
|
||||
<button class="btn btn-link">Mehr Lernfelder</button>
|
||||
</div>
|
||||
</div>
|
||||
{% include 'block_lernfelder.html' %}
|
||||
|
||||
<!-- Today's News -->
|
||||
<div class="news p-3">
|
||||
|
Reference in New Issue
Block a user