This repository has been archived on 2025-02-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
cavecomm/templates/customer_Freelancer_Template_Request.html
2023-04-17 03:15:57 +02:00

38 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html>
<head>
{{> templateIncludes/style.css.html}}
</head>
<body>
<h2>Freelancer: {{freelancername}}</h2>
<h3>Template: {{templatename}}</h3>
<br>
<form action="/customer/{{freelancername}}/template/{{templatename}}/request/fulfilment" method="post">
<label for="customername">Name:</label> <input type="text" id="customername" name="customername" value=""><br>
<label for="email">E-Mail:</label> <input type="email" id="email" name="email" value=""><br>
<label for="customercontactdetails">Additional Contact Details: </label> <input type="text" id="customercontactdetails" name="customercontactdetails" value=""><br>
<label for="requestdescription">Request Description:</label><br>
<textarea type="text" id="requestdescription" name="requestdescription"></textarea><br>
<button type="submit" name="templateID" value="{{templateid}}" class="button">Request this Template</button>
</form>
<br>
<div>Payment Information:</div>
<div>
Currency: {{currencypreference}}<br>
Price: {{pricetotal}} - Upfront: {{priceupfront}} - On Delivery: {{priceondeliver}}
</div><br>
<form action="/customer/{{freelancername}}/template/{{templatename}}" method="post">
<button type="submit" name="templateID" value="{{templateid}}" class="button">Return to template page</button>
</form>
<br>
<form action="/" method="post">
<button type="submit" class="button">Return to freelancer selection</button>
</form>
</body>
</html>