Template displayed at a successfull request creation

This commit is contained in:
Tina_Azure
2023-04-10 19:33:31 +02:00
parent 854d556c00
commit bfa49c2281

View File

@ -0,0 +1,41 @@
<!DOCTYPE html>
<html>
<head>
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>
<h2>Freelancer: {{freelancername}}</h2>
<h3>Template: {{templatename}}</h3>
<div>
The Request has been successfully created.
</div>
<br>
<form action="/customer/{{freelancername}}/template/{{templatename}}/request" method="post">
<button type="submit" name="templateID" value="{{templateid}}" class="button">Return to the Template Inputform</button>
</form>
<br>
<form action="/" method="post">
<button type="submit" class="button">Return to freelancer selection</button>
</form>
</body>
</html>