elukjanovica 2024-04-18 20:03:03 +03:00
parent a8d50f9ee4
commit 1664b7d131
2 changed files with 16 additions and 2 deletions

View File

@ -3,8 +3,8 @@ from flask import Flask, render_template, redirect, request, session, url_for
app = Flask(__name__)
users = {
'user1': 'password1',
'user2': 'password2'
'thegamer': 'gamerpro1',
'justuser': 'randompassword'
}
posts = [

View File

@ -0,0 +1,14 @@
{% extends 'base.html' %}
{% block title %}
Game "Picture Puzzle remake" update 1.0
{% endblock %}
{% block content %}
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/posts.css') }}">
<section class="content">
<h1>Game "Picture Puzzle remake" update 1.0</h1>
<img src="{{ url_for('static', filename='images/picture-puzzle.png') }}" alt="Picture Puzzle original" width="800" height="500">
<p class="text"></br>Advices</p>
</section>
{% endblock %}