init meinantrag
This commit is contained in:
parent
a26fa2c64a
commit
fa8f03a450
11 changed files with 779 additions and 3355 deletions
|
|
@ -3,7 +3,7 @@
|
|||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{% block title %}Fragify{% endblock %}</title>
|
||||
<title>{% block title %}MeinAntrag{% endblock %}</title>
|
||||
<link href="/static/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="/static/css/select2.min.css" rel="stylesheet">
|
||||
<link href="/static/css/select2-bootstrap-5-theme.min.css" rel="stylesheet">
|
||||
|
|
@ -13,14 +13,14 @@
|
|||
<link rel="alternate" hreflang="de" href="{{ canonical_url | default('/') }}">
|
||||
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Fragify">
|
||||
<meta property="og:title" content="{{ meta_title | default('Fragify') }}">
|
||||
<meta property="og:site_name" content="MeinAntrag">
|
||||
<meta property="og:title" content="{{ meta_title | default('MeinAntrag') }}">
|
||||
<meta property="og:description" content="{{ meta_description | default('Erstelle vorausgefüllte FragDenStaat.de-Anfragelinks und teile sie mit Freund:innen.') }}">
|
||||
<meta property="og:locale" content="de_DE">
|
||||
<meta property="og:url" content="{{ canonical_url | default('/') }}">
|
||||
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="{{ meta_title | default('Fragify') }}">
|
||||
<meta name="twitter:title" content="{{ meta_title | default('MeinAntrag') }}">
|
||||
<meta name="twitter:description" content="{{ meta_description | default('Erstelle vorausgefüllte FragDenStaat.de-Anfragelinks und teile sie mit Freund:innen.') }}">
|
||||
|
||||
{% if noindex %}<meta name="robots" content="noindex,follow">{% endif %}
|
||||
|
|
@ -175,7 +175,7 @@
|
|||
<div class="footer-links mb-2">
|
||||
<a href="/impressum" class="text-muted text-decoration-none me-3">Impressum</a>
|
||||
<a href="/datenschutz" class="text-muted text-decoration-none me-3">Datenschutz</a>
|
||||
<a href="https://git.project-insanity.org/onny/fragify" class="text-muted text-decoration-none" target="_blank">Source</a>
|
||||
<a href="https://git.project-insanity.org/onny/MeinAntrag" class="text-muted text-decoration-none" target="_blank">Source</a>
|
||||
</div>
|
||||
<div class="footer-text">
|
||||
<small class="text-muted">
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}Datenschutz - Fragify{% endblock %}
|
||||
{% block title %}Datenschutz - MeinAntrag{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="text-center">
|
||||
<h1 class="title display-4">
|
||||
<a href="/" class="text-decoration-none text-dark">Fragify</a>
|
||||
<a href="/" class="text-decoration-none text-dark">MeinAntrag</a>
|
||||
</h1>
|
||||
<h2 class="text-muted h4 mt-3">Datenschutzerklärung</h2>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}Impressum - Fragify{% endblock %}
|
||||
{% block title %}Impressum - MeinAntrag{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="text-center">
|
||||
<h1 class="title display-4">
|
||||
<a href="/" class="text-decoration-none text-dark">Fragify</a>
|
||||
<a href="/" class="text-decoration-none text-dark">MeinAntrag</a>
|
||||
</h1>
|
||||
<h2 class="text-muted h4 mt-3">Impressum</h2>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,17 +1,17 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}Fragify{% endblock %}
|
||||
{% block title %}MeinAntrag{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="text-center">
|
||||
<h1 class="title display-4">Fragify</h1>
|
||||
<h1 class="title display-4">MeinAntrag</h1>
|
||||
<p class="description">
|
||||
Erstelle einfach Links für Anfragen bei dem Portal
|
||||
<a href="https://fragdenstaat.de" target="_blank" class="text-decoration-none">FragDenStaat.de</a>,
|
||||
welche du vorausfüllen und an Freund:innen schicken kannst!
|
||||
</p>
|
||||
|
||||
<form id="fragifyForm" class="text-start">
|
||||
<form id="meinantragForm" class="text-start">
|
||||
<div class="mb-4">
|
||||
<label for="publicbody" class="form-label fw-bold">Behörde</label>
|
||||
<select class="form-select" id="publicbody" name="publicbody_id" required>
|
||||
|
|
@ -87,7 +87,7 @@
|
|||
});
|
||||
|
||||
// Handle form submission (client-side)
|
||||
$('#fragifyForm').on('submit', function(e) {
|
||||
$('#meinantragForm').on('submit', function(e) {
|
||||
e.preventDefault();
|
||||
|
||||
const publicbodyId = $('#publicbody').val() || '';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue