initial push

This commit is contained in:
Andreas Jönsson 2025-11-15 17:53:26 +01:00
parent acdbd8d707
commit e6b9e688a8
7 changed files with 185 additions and 0 deletions

Binary file not shown.

67
app.py Normal file
View File

@ -0,0 +1,67 @@
from flask import Flask, render_template, redirect, url_for, request
from flask_sqlalchemy import SQLAlchemy
from flask_login import LoginManager, UserMixin, login_user, login_required, logout_user
from werkzeug.security import generate_password_hash, check_password_hash
app = Flask(__name__)
app.config['SECRET_KEY'] = 'your-secret-key-here'
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:////Users/leoan/Developer/Personal_Projects/web-login/instance/users.db'
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
db = SQLAlchemy(app)
login_manager = LoginManager(app)
login_manager.login_view = 'login'
class User(UserMixin, db.Model):
id = db.Column(db.Integer, primary_key=True)
email = db.Column(db.String(100), unique=True)
password = db.Column(db.String(100))
@login_manager.user_loader
def load_user(user_id):
return User.query.get(int(user_id))
@app.route('/')
def home():
return redirect(url_for('login'))
@app.route('/login', methods=['GET', 'POST'])
def login():
if request.method == 'POST':
email = request.form.get('email')
password = request.form.get('password')
user = User.query.filter_by(email=email).first()
if user and check_password_hash(user.password, password):
login_user(user)
return redirect(url_for('dashboard'))
return 'Invalid credentials'
return render_template('login.html')
@app.route('/register', methods=['GET', 'POST'])
def register():
if request.method == 'POST':
email = request.form.get('email')
password = generate_password_hash(request.form.get('password'))
if User.query.filter_by(email=email).first():
return 'Email already registered'
new_user = User(email=email, password=password)
db.session.add(new_user)
db.session.commit()
return redirect(url_for('login'))
return render_template('register.html')
@app.route('/dashboard')
@login_required
def dashboard():
return render_template('dashboard.html')
@app.route('/logout')
@login_required
def logout():
logout_user()
return redirect(url_for('login'))

BIN
instance/users.db Normal file

Binary file not shown.

26
templates/base.html Normal file
View File

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}{% endblock %}</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
.auth-wrapper {
min-height: 100vh;
display: flex;
align-items: center;
padding: 2rem;
}
.form-container {
max-width: 400px;
width: 100%;
margin: 0 auto;
}
</style>
</head>
<body class="bg-light">
{% block content %}{% endblock %}
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>

34
templates/dashboard.html Normal file
View File

@ -0,0 +1,34 @@
{% extends "base.html" %}
{% block title %}Dashboard{% endblock %}
{% block content %}
<div class="container mt-5">
<div class="card shadow">
<div class="card-header d-flex justify-content-between align-items-center">
<h3 class="mb-0">Dashboard</h3>
<a href="{{ url_for('logout') }}" class="btn btn-outline-secondary">
Logout <i class="bi bi-box-arrow-right"></i>
</a>
</div>
<div class="card-body">
<div class="alert alert-success">
Welcome back, <strong>{{ current_user.email }}</strong>!
</div>
<div class="mt-4">
<h5>Account Details</h5>
<ul class="list-group">
<li class="list-group-item d-flex justify-content-between">
<span>Registered Email:</span>
<span class="text-muted">{{ current_user.email }}</span>
</li>
<li class="list-group-item d-flex justify-content-between">
<span>Account Created:</span>
<span class="text-muted">Just now</span>
</li>
</ul>
</div>
</div>
</div>
</div>
{% endblock %}

29
templates/login.html Normal file
View File

@ -0,0 +1,29 @@
{% extends "base.html" %}
{% block title %}Login{% endblock %}
{% block content %}
<div class="auth-wrapper">
<div class="form-container">
<div class="card shadow">
<div class="card-body">
<h2 class="card-title text-center mb-4">Sign In</h2>
<form method="POST">
<div class="mb-3">
<label class="form-label">Email address</label>
<input type="email" class="form-control" name="email" required>
</div>
<div class="mb-4">
<label class="form-label">Password</label>
<input type="password" class="form-control" name="password" required>
</div>
<button type="submit" class="btn btn-primary w-100">Sign In</button>
</form>
<div class="text-center mt-3">
Don't have an account? <a href="{{ url_for('register') }}" class="text-decoration-none">Register here</a>
</div>
</div>
</div>
</div>
</div>
{% endblock %}

29
templates/register.html Normal file
View File

@ -0,0 +1,29 @@
{% extends "base.html" %}
{% block title %}Register{% endblock %}
{% block content %}
<div class="auth-wrapper">
<div class="form-container">
<div class="card shadow">
<div class="card-body">
<h2 class="card-title text-center mb-4">Create Account</h2>
<form method="POST">
<div class="mb-3">
<label class="form-label">Email address</label>
<input type="email" class="form-control" name="email" required>
</div>
<div class="mb-4">
<label class="form-label">Password</label>
<input type="password" class="form-control" name="password" required>
</div>
<button type="submit" class="btn btn-primary w-100">Register</button>
</form>
<div class="text-center mt-3">
Already have an account? <a href="{{ url_for('login') }}" class="text-decoration-none">Login here</a>
</div>
</div>
</div>
</div>
</div>
{% endblock %}