Finish Feedback

This commit is contained in:
zha19115 2023-05-16 13:04:12 +02:00
parent 5430086746
commit 61d6146b82
4 changed files with 88 additions and 0 deletions

View File

@ -0,0 +1,15 @@
@page "/FBestätigung"
<div class="container col-lg-5 col-md-9 col-sm-12 d-flex flex-column " id="content">
<h4>Vielen Dank für Ihren Feedback. Durch Feedbacks können wir uns stets verbessern.<br></h4>
<form id="button1" action="Startseite">
<input type="submit" value="Zur Startseite" class="btn">
</form>
</div>
@code {
}

View File

@ -0,0 +1,11 @@

h4 {
text-align: center;
margin-top: 45%;
}
form {
margin-bottom: 45%;
}

View File

@ -0,0 +1,21 @@
@page "/Feedback"
<body>
<div class="container col-lg-5 col-md-9 col-sm-12 d-flex flex-column " id="content">
<label for="feedback">Ihr Feedback: </label>
<textarea class="form-control" rows="5" id="feedback" name="text"></textarea>
<div class="button">
<br>
<form id="button1" action="FBestätigung">
<input type="submit" value="Absenden" class="btn">
</form>
</div>
</div>
</body>
@code {
}

View File

@ -0,0 +1,41 @@
body, html {
padding: 0px;
margin: 0px;
margin-bottom: 15px;
}
p {
text-align:center;
}
img {
width: 20%;
height: auto;
padding: 5px;
}
.text {
color: grey;
font-size: 13px;
}
.button {
padding-left: 25%;
padding-right: 25%;
text-align: center;
}
#button1 {
background-color: #F9BE89;
padding-left: 25%;
padding-right: 25%;
display: inline-block;
border-radius: 50px;
}
h4 {
text-align: center;
}