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 config import load_config
|
||||
|
||||
app = Flask(__name__)
|
||||
app = Flask(__name__, template_folder="../templates")
|
||||
config = load_config()
|
||||
|
||||
@app.route("/")
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<title>{{ name }}</title>
|
||||
<style>
|
||||
body {
|
||||
background-color: #36393f; /* Dark grey color similar to Discord background */
|
||||
background-color: #36393f;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
@ -15,7 +15,7 @@
|
|||
}
|
||||
|
||||
h1 {
|
||||
color: #ffffff; /* White text color */
|
||||
color: #ffffff;
|
||||
font-size: 36px;
|
||||
text-align: center;
|
||||
}
|
Loading…
Reference in a new issue