mirror of
https://github.com/yummy4friends/y4f.git
synced 2025-01-02 22:37:17 +01:00
Finish Feedback
This commit is contained in:
parent
5430086746
commit
61d6146b82
15
Shared/Feedback/FBestätigung.razor
Normal file
15
Shared/Feedback/FBestätigung.razor
Normal 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 {
|
||||||
|
|
||||||
|
}
|
11
Shared/Feedback/FBestätigung.razor.css
Normal file
11
Shared/Feedback/FBestätigung.razor.css
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
|
||||||
|
h4 {
|
||||||
|
text-align: center;
|
||||||
|
margin-top: 45%;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
form {
|
||||||
|
margin-bottom: 45%;
|
||||||
|
}
|
21
Shared/Feedback/Feedback.razor
Normal file
21
Shared/Feedback/Feedback.razor
Normal 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 {
|
||||||
|
|
||||||
|
|
||||||
|
}
|
41
Shared/Feedback/Feedback.razor.css
Normal file
41
Shared/Feedback/Feedback.razor.css
Normal 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;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user