This commit is contained in:
bacalhau 2026-03-04 18:50:24 +00:00
parent a35085c8fd
commit 2b835d7500
4 changed files with 52 additions and 41 deletions

View file

@ -14,15 +14,17 @@
}
body {
background: #101210;
color: #e0e0e0;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
max-width: 800px;
background: #FFE0F4;
color: #FF00AA;
text-shadow: 0px 0px 5px rgba(255, 0, 170, 0.8);
padding: 5px;
max-width: 75%;
margin: auto;
font-family: font;
font-weight: normal;
line-height: 1.2rem;
word-wrap: break-word;
font-size: 22px;
}
footer {
@ -42,44 +44,55 @@ strong, b {
font-weight: bold;
}
section {
margin-top: 32px;
background: #fff;
padding: 5px;
border: medium;
border-color: #FF00AA;
border-radius: 5px;
border-style: dashed;
}
h1 {
color: #00ff00;
color: #FF00AA;
text-decoration: underline yellow;
text-align: center;
}
h2 {
color: #00ff00;
color: #FF00AA;
}
h3 {
color: #00ff00;
color: #FF00AA;
}
a {
color: #ffff00;
color: #FF699B;
}
a:hover {
color: #ffffff;
}
summary {
color: #008800;
background: #101210;
table {
width: 100%;
border-collapse: collapse;
}
details {
background: #222;
th, td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
summary:hover {
color: #fff;
cursor: pointer;
th {
background-color: #FF00AA;
color: white;
}
.service {
padding: 0.5rem;
border: solid thin #ffff00;
tr:nth-child(even) {
background-color: #FF00AA;
}

View file

@ -1,15 +1,5 @@
{% extends "page.html" %}
{% block content %}
<h2>Home</h2>
<p>Page text</p>
<p>Page text</p>
<p>Page text</p>
<p>Page text</p>
<p>Page text</p>
<p>Page text</p>
<p>Page text</p>
<p>Page text</p>
<p>Page text</p>
<p>Page text</p>
<h2>Main Page</h2>
{% endblock %}

View file

@ -19,9 +19,9 @@
</nav>
<body>
{% block content %}{% endblock %}
<section>
{% block content %}{% endblock %}
</section>
<footer>Dating Website</footer>
</body>

View file

@ -4,14 +4,13 @@
<h2>Register</h2>
<form method="POST" enctype="multipart/form-data">
<h3>Identity (required)</h3>
<h3>Account (required)</h3>
<input type="text" name="username" placeholder="Username" required><br>
<textarea name="pgp" placeholder="PGP Public Key" required></textarea><br>
<h3>Personal Info (required)</h3>
<input type="text" name="firstname" placeholder="First Name" required><br>
<input type="text" name="lastname" placeholder="Last Name" required><br>
<input type="text" name="firstname" placeholder="First Name*" required><br>
<input type="text" name="lastname" placeholder="Last Name*" required><br>
<select name="sex" required>
<option value="">Select Sex</option>
@ -27,22 +26,32 @@
<h3>Other Pictures (optional, multiple)</h3>
<input type="file" name="pictures" accept="image/*" multiple><br>
<h3>Location (required)</h3>
<h3>Country (required)</h3>
<select name="country" required>
<option value="">Select Country</option>
{% for c in countries %}
<option value="{{ c }}">{{ c }}</option>
{% endfor %}
</select><br>
<h3>City (optional)</h3>
<input type="text" name="city" placeholder="City"><br>
<h3>Physical Attributes (optional)</h3>
<input type="number" step="0.01" name="height" placeholder="Height (m)"><br>
<input type="number" name="weight" placeholder="Weight (kg)"><br>
<input type="text" name="race" placeholder="Race"><br>
<select name="race" required>
<option value="">select race</option>
<option value="Latino(a)">Latino</option>
<option value="Asian">Asian</option>
<option value="White">White</option>
<option value="Black">Black</option>
<option value="Brown">Brown</option>
<option value="Native American">Native American</option>
</select><br>
<h3>Preferences (optional)</h3>
<input type="text" name="prefered_age_range" placeholder="Preferred Age Range (e.g. 20-30)"><br>
<input type="text" name="prefered_age_range" placeholder="Preferred Age Range"><br>
<h3>Contacts (required)</h3>
<input type="text" name="xmpp" placeholder="XMPP" required><br>
@ -50,7 +59,6 @@
<input type="text" name="phone" placeholder="Phone"><br><br>
<button type="submit">Register</button>
</form>
{% with messages = get_flashed_messages() %}