main
parent
a8d50f9ee4
commit
1664b7d131
4
main.py
4
main.py
|
@ -3,8 +3,8 @@ from flask import Flask, render_template, redirect, request, session, url_for
|
||||||
app = Flask(__name__)
|
app = Flask(__name__)
|
||||||
|
|
||||||
users = {
|
users = {
|
||||||
'user1': 'password1',
|
'thegamer': 'gamerpro1',
|
||||||
'user2': 'password2'
|
'justuser': 'randompassword'
|
||||||
}
|
}
|
||||||
|
|
||||||
posts = [
|
posts = [
|
||||||
|
|
|
@ -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 %}
|
Loading…
Reference in New Issue