-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added landing page template, url and view
- Loading branch information
Showing
3 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,50 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block content %} | ||
<div class="container"> | ||
<!-- Title Section --> | ||
<h1>building dialogue</h1> | ||
<p> | ||
Das Tool analysiert die Kosten-Nutzen-Effizienz von Modernisierungsprojekten an Gebäuden. | ||
Es richtet sich an Hauseigentümer*innen, Wohnungseigentümer-gemeinschaften sowie | ||
Wohnungsverwaltungen und zeigt die Einsparpotenziale bei Sanierungsmaßnahmen auf. | ||
</p> | ||
<!-- Main Action Section --> | ||
<div class="row mt-4"> | ||
<!-- Start Container --> | ||
<div class="col-12 col-md-6"> | ||
<div class="border p-4 h-100"> | ||
<div class="mb-3"> | ||
<!-- User Type Options --> | ||
<p>Ich bin:</p> | ||
<ul class="list-unstyled"> | ||
<li>• Ich bin Hauseigentümer*in</li> | ||
<li>• Ich bin Vermieter*in</li> | ||
<li>• Ich gehöre zu einer WohnungseigentümerInnengemeinschaft oder Wohnungsverwaltungen</li> | ||
</ul> | ||
</div> | ||
<!-- Input and Button Row --> | ||
<div class="input-group"> | ||
<input type="text" | ||
id="postalCode" | ||
class="form-control" | ||
placeholder="Bsp: 45328" /> | ||
<button class="btn btn-dark">Starten</button> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- Info Container --> | ||
<div class="col-12 col-md-6"> | ||
<div class="border p-4 h-100 d-flex flex-column align-items-left justify-content-between"> | ||
<div class="text-left"> | ||
<p>Ich bin:</p> | ||
<ul class="list-unstyled"> | ||
<li>• Ich bin Mieter*in</li> | ||
</ul> | ||
</div> | ||
<button class="btn btn-secondary mt-3">Infos</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
{% endblock content %} |