110 lines
4.3 KiB
Plaintext
110 lines
4.3 KiB
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title></title>
|
|
<link rel='stylesheet' href='/stylesheets/style.css'>
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
|
|
<link rel='stylesheet' href='/bootstrap/dist/css/bootstrap.min.css'>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Navbar -->
|
|
<nav class="navbar sticky-top navbar-light bg-light" style="background-color:rgb(200, 200, 201)">
|
|
<a class="navbar-brand" href="/">
|
|
<div class="logo-image">
|
|
<img src="/images/Logo.png" class="img-fluid">
|
|
</div>
|
|
</a>
|
|
<ul class="nav justify-content-end liste">
|
|
<li class="nav-item">
|
|
<!-- <a class="nav-link active" href="#">Add</a> -->
|
|
<button class="btn btn-outline-light border-secondary sl_add" style="color: black">Shoppingliste Hinzufügen</button>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
<br>
|
|
<br>
|
|
|
|
<!-- alle cards-->
|
|
<div class="container justify-content-center cardausgabe">
|
|
<div class="card-columns">
|
|
<div class="listen-ausgabe">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- detail card -->
|
|
<div class="row justify-content-center ">
|
|
<div class="card border-light mb-3 detailcardausgabe" style="width: 50rem;">
|
|
<div class="card-header text-center"></div>
|
|
|
|
<div class="card-body">
|
|
<h5 class="card-title"></h5>
|
|
<p class="card-text"></p>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<!-- Modal Group Hinzufügen -->
|
|
<div class="modal fade bd-example-modal-sm ListenDetailAdd" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
|
|
<div class="modal-dialog modal-sm">
|
|
<div class="modal-content">
|
|
<form>
|
|
|
|
<center><p class="layout ueberschrift">Group hinzufügen</p></center>
|
|
<div class="form-group layout">
|
|
<label for="exampleInputEmail1">Name</label>
|
|
<input type="text" class="form-control" id="groupname"placeholder="zB: Getränke">
|
|
</div>
|
|
|
|
<div class="form-group layout">
|
|
<label for="exampleInputPassword1">Farbe</label>
|
|
<input type="text" class="form-control" id="groupfarbe" placeholder="zB: Red">
|
|
</div>
|
|
|
|
<center><button type="submit" class="btn btn-outline-dark gruppenadd">Hinzufügen</button></center>
|
|
<br>
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<!-- Modal Shoppingliste Hinzufügen -->
|
|
<div class="modal fade bd-example-modal-sm EigeneListeAdd" tabindex="-1" id="EigeneListeAdd" role="dialog" aria-labelledby="EigeneListeAdd" aria-hidden="true">
|
|
<div class="modal-dialog modal-sm">
|
|
<div class="modal-content">
|
|
<form>
|
|
|
|
<div class="form-group layout">
|
|
<label for="exampleInputEmail1">Name</label>
|
|
<input type="text" class="form-control" id="einkaufslistenname"placeholder="zB: Billa">
|
|
</div>
|
|
|
|
<div class="form-group layout">
|
|
<label for="exampleInputPassword1">Beschreibung</label>
|
|
<input type="text" class="form-control" id="einkaufslistenbeschreibung" placeholder="zB: Großeinkauf bei Billa">
|
|
</div>
|
|
|
|
<center><button type="submit" class="btn btn-outline-dark add">Hinzufügen</button></center>
|
|
<br>
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- <a href="/shoppinglist_json/0">dfasdfghjklöghjkl</a> -->
|
|
<!-- <a href="/myshoppinglists">Meine Einkaufslisten anzeigen</a><br>
|
|
<a href="/sharedshoppinglists">Mit mir geteilte Einkaufslisten anzeigen</a><br>
|
|
<a href="">Einkaufsliste erstellen</a><br>
|
|
<a href='/logout'>Logout</a> -->
|
|
|
|
<script src="/jquery/dist/jquery.js"></script>
|
|
<script src="/bootstrap/dist/js/bootstrap.min.js"></script>
|
|
<script src="/javascripts/ajax.js"></script>
|
|
<script src="https://unpkg.com/ionicons@4.4.8/dist/ionicons.js"></script>
|
|
</body>
|
|
</html> |