Upload files to "/"

main
Vladimirs Moriļovs 2024-05-21 17:55:00 +00:00
parent cc1c15559e
commit 2920406ed5
5 changed files with 94 additions and 0 deletions

View File

@ -0,0 +1,9 @@
{% extends "base.html" %}
{% block title %}Succes{% endblock %}
{% block content %}
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
<h1>ERROR ;[ </h1>
<div class="alert alert-danger" role="alert">
A user with the same name or email is already in the database! <a href="{{ url_for('register')}}" class="alert-link">Back!</a>
</div>
{% endblock %}

38
index.html 100644
View File

@ -0,0 +1,38 @@
{% extends "base.html" %}
{% block title %}Home{% endblock %}
{% block content %}
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
<h1>Welcome to LinguaPro</h1>
<p>LinguaPro - your online platform for learning foreign languages! We offer interactive courses, live lessons with native speakers, and a variety of resources for effective and fun learning. Our programs are suitable for all levels - from beginners to advanced.</p>
<p>Why choose LinguaPro ?
<p>Interactive courses: Our courses are developed by leading linguists and teachers. They include videos, audio lessons and practical exercises.</p>
<p>Live communication: You will have the opportunity to communicate with native speakers, which will allow you to immerse yourself in the language environment and improve your skills.</p>
<p>Flexibility: You can study anytime, anywhere, adapting the learning process to your schedule.</p>
<p>Community Support: Join our community of students, share experiences and make new friends.</p>
<p>Start your journey into the world of languages with LinguaPro today!</p>
<div id="carouselExampleControls" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="https://huggingface.co/datasets/huggingfacejs/tasks/resolve/main/image-classification/image-classification-input.jpeg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRFB_nDgwnQCjDba2Riea6k5WbnGIwhx098PIJQgn19afrVMFjnbYCJYU1U9KhCfmwRKyM&usqp=CAU" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="https://www.justgeek.fr/wp-content/uploads/2022/12/exemple-image-midjourney.webp" class="d-block w-100" alt="...">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleControls" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleControls" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
{% endblock %}

17
login.html 100644
View File

@ -0,0 +1,17 @@
{% extends "base.html" %}
{% block title %}Login{% endblock %}
{% block content %}
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
<h2 class="header">Login</h2>
<form method="POST" >
<div class="form-group">
<label for="email">Email:</label>
<input type="email" class="form-control" id="email" name="email">
</div>
<div class="form-group">
<label for="password">Password:</label>
<input type="password" class="form-control" id="password" name="password" minlength="8">
</div>
<button type="submit" " class="btn btn-primary">Submit</button>
</form>
{% endblock %}

9
profile.html 100644
View File

@ -0,0 +1,9 @@
{% extends "base.html" %}
{% block title %}Account{% endblock %}
{% block content %}
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
<h2 class="header">Account</h2>
<p>Name: {{ name }}</p>
<p>Email: {{ email }}</p>
<p>Password: {{ password }}</p>
{% endblock %}

21
register.html 100644
View File

@ -0,0 +1,21 @@
{% extends "base.html" %}
{% block title %}Register{% endblock %}
{% block content %}
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
<h2 class="header">Register</h2>
<form method="POST" >
<div class="form-group">
<label for="name">Name:</label>
<input type="text" class="form-control" minlength="4" id="name" name="name">
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" class="form-control" id="email" name="email">
</div>
<div class="form-group">
<label for="password">Password:</label>
<input type="password" class="form-control" id="password" name="password" minlength="8">
</div>
<button type="submit" action="{{ url_for('success') }}" class="btn btn-primary">Submit</button>
</form>
{% endblock %}