parent
7bce37647c
commit
f566b56c2a
File diff suppressed because it is too large
Load Diff
|
After Width: | Height: | Size: 70 KiB |
@ -1,17 +1,27 @@
|
||||
{% load pwa %}
|
||||
{% load static %}
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<link rel="stylesheet" href="{% static 'app/css/bootstrap.css' %}">
|
||||
|
||||
{% progressive_web_app_meta %}
|
||||
|
||||
<title>PioMint - Install</title>
|
||||
<title>PioMint</title>
|
||||
</head>
|
||||
<body style="background-color: #9FEDD7;">
|
||||
{% block content %}
|
||||
{% endblock %}
|
||||
<body style="overflow: hidden; background-color: #026670;">
|
||||
<!-- HEADER -->
|
||||
<div class="container-fluid" style="background-color: white; height: 6vh; padding: 0;">
|
||||
<div class="container-fluid" style="background-color: #026670; border-bottom-left-radius: 2rem; border-bottom-right-radius: 2rem; height: 5vh;"></div>
|
||||
</div>
|
||||
|
||||
<!-- CONTENT AREA -->
|
||||
<div class="container-fluid d-flex justify-content-center align-items-center" style="height: 94vh; background-color: white;">
|
||||
{% block content %}
|
||||
{% endblock %}
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@ -0,0 +1,13 @@
|
||||
{% extends 'app/base.html' %}
|
||||
{% load static %}
|
||||
|
||||
{% block content %}
|
||||
<div class="text-center">
|
||||
<img src="{% static 'app/images/watch_transparent.png' %}" alt="Bildbeschreibung" class="img-fluid w-50">
|
||||
<br>
|
||||
<h1><b>PIOMINT</b></h1>
|
||||
<br>
|
||||
<br>
|
||||
<button type="button" class="btn btn-primary mt-5" style="border-radius: 2rem; font-size: 2.5rem; padding: 0rem 0.75rem;">→</button>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Loading…
Reference in new issue