25 lines
694 B
HTML
25 lines
694 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{{> templateIncludes/style.css.html}}
|
|
</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>
|
|
|
|
|
|
|
|
|