diff --git a/main.py b/main.py index 6dace53..4d7c794 100644 --- a/main.py +++ b/main.py @@ -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 = [ diff --git a/templates/advices.html b/templates/advices.html new file mode 100644 index 0000000..4643f88 --- /dev/null +++ b/templates/advices.html @@ -0,0 +1,14 @@ +{% extends 'base.html' %} + +{% block title %} + Game "Picture Puzzle remake" update 1.0 +{% endblock %} + +{% block content %} + +
+

Game "Picture Puzzle remake" update 1.0

+ Picture Puzzle original +


Advices

+
+{% endblock %}