Create Template representing a freelancers template

This commit is contained in:
Tina_Azure
2023-04-04 01:49:52 +02:00
parent 3915a375c5
commit 0693fc0bf5

View File

@ -0,0 +1,63 @@
<!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>Contact Information:</div>
<div>
{{contactdata}}<br>
{{contactinformation}}
</div>
<br>
<form action="/customer/{{freelancername}}/template/{{templatename}}/request" method="post">
<button type="submit" name="templateID" value="{{templateid}}" class="button">Request this Template</button>
</form>
<br>
<div>Payment Information:</div>
<div>
Prefered Currency: {{currencypreference}}<br>
Price: {{pricetotal}} - Upfront: {{priceupfront}} - On Delivery: {{priceondeliver}}<br>
</div>
<br>
<div>Description:</div>
<div>{{content}}</div>
<br>
<form action="/customer/{{name}}" method="post">
<button type="submit" name="freelancerID" value="{{freelancerid}}" class="button">Return to freelancer profile</button>
</form>
<br>
<form action="/" method="post">
<button type="submit" class="button">Return to freelancer selection</button>
</form>
</body>
</html>