Create Template representing a freelancers template
This commit is contained in:
63
templates/customer_Freelancer_Template.html
Normal file
63
templates/customer_Freelancer_Template.html
Normal 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>
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user