base templates
This commit is contained in:
@@ -16,6 +16,9 @@
|
||||
<form action="/freelancer/createInvoice" method="get">
|
||||
<button type="submit" class="button">Create Invoice</button>
|
||||
</form>
|
||||
<form action="/freelancer/submissionManagement" method="get">
|
||||
<button type="submit" class="button">Commission Submission Management</button>
|
||||
</form>
|
||||
</div>
|
||||
<br>
|
||||
<div>
|
||||
|
26
templates/freelancer_Submission_Management.html
Normal file
26
templates/freelancer_Submission_Management.html
Normal file
@@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
{{> templateIncludes/style.css.html}}
|
||||
</head>
|
||||
<body>
|
||||
{{^COOKIE_LOGGED_IN}}
|
||||
Please Log in.
|
||||
{{/COOKIE_LOGGED_IN}}
|
||||
{{#COOKIE_LOGGED_IN}}
|
||||
<form action="/freelancer/submissionManagement/add" method="get">
|
||||
<button type="submit" class="button">Add a submission for a commission</button>
|
||||
</form>
|
||||
<form action="/freelancer/submissionManagement/view" method="get">
|
||||
<button type="submit" class="button">View Submissions</button>
|
||||
</form>
|
||||
{{/COOKIE_LOGGED_IN}}
|
||||
{{> templateIncludes/freelancerLoginSignupProfileLogoutInterface.html.html}}
|
||||
<br>
|
||||
{{> templateIncludes/returnToIndexButton.html.html}}
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
|
23
templates/freelancer_Submission_Management_Add.html
Normal file
23
templates/freelancer_Submission_Management_Add.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
{{> templateIncludes/style.css.html}}
|
||||
</head>
|
||||
<body>
|
||||
{{^COOKIE_LOGGED_IN}}
|
||||
Please Log in.
|
||||
{{/COOKIE_LOGGED_IN}}
|
||||
{{#COOKIE_LOGGED_IN}}
|
||||
<form action="/freelancer/submissionManagement/add/fulfillment" method="post">
|
||||
<button type="submit" class="button">Add a submission for a commission</button>
|
||||
</form>
|
||||
{{/COOKIE_LOGGED_IN}}
|
||||
{{> templateIncludes/freelancerLoginSignupProfileLogoutInterface.html.html}}
|
||||
<br>
|
||||
{{> templateIncludes/returnToIndexButton.html.html}}
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
|
26
templates/freelancer_Submission_Management_View.html
Normal file
26
templates/freelancer_Submission_Management_View.html
Normal file
@@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
{{> templateIncludes/style.css.html}}
|
||||
</head>
|
||||
<body>
|
||||
{{^COOKIE_LOGGED_IN}}
|
||||
Please Log in.
|
||||
{{/COOKIE_LOGGED_IN}}
|
||||
{{#COOKIE_LOGGED_IN}}
|
||||
<form action="/freelancer/submissionManagement/view/delete" method="post">
|
||||
<button type="submit" class="button">Delete Submission</button>
|
||||
</form>
|
||||
<form action="/freelancer/submissionManagement/view/generateLink" method="post">
|
||||
<button type="submit" class="button">Generate Link to submission</button>
|
||||
</form>
|
||||
{{/COOKIE_LOGGED_IN}}
|
||||
{{> templateIncludes/freelancerLoginSignupProfileLogoutInterface.html.html}}
|
||||
<br>
|
||||
{{> templateIncludes/returnToIndexButton.html.html}}
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user