This commit is contained in:
parent
1ac2797d72
commit
c6d31f79ce
2 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
from flask import Flask, render_template
|
from flask import Flask, render_template
|
||||||
from config import load_config
|
from config import load_config
|
||||||
|
|
||||||
app = Flask(__name__)
|
app = Flask(__name__, template_folder="../templates")
|
||||||
config = load_config()
|
config = load_config()
|
||||||
|
|
||||||
@app.route("/")
|
@app.route("/")
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
<title>{{ name }}</title>
|
<title>{{ name }}</title>
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
background-color: #36393f; /* Dark grey color similar to Discord background */
|
background-color: #36393f;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
@ -15,7 +15,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
color: #ffffff; /* White text color */
|
color: #ffffff;
|
||||||
font-size: 36px;
|
font-size: 36px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
Loading…
Reference in a new issue