cavecomm/templates/freelancer_Alias_Management...

39 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
{{> templateIncludes/style.css.html}}
</head>
<body>
{{^COOKIE_LOGGED_IN}}
Please Log in.
{{/COOKIE_LOGGED_IN}}
{{#COOKIE_LOGGED_IN}}
<h2>Freelancer: {{freelanceremail}}</h2>
<br>
<br>
<table>
{{#alias}}
<tr>
<th>@{{aliasname}}</th>
<th>{{route}}</th>
<th>
<form action="/freelancer/aliasManagement/delete" method="post">
<button type="submit" name="alias" value="{{aliasname}}" class="button">Delete</button>
</form>
</th>
</tr>
{{/alias}}
</table>
<form action="/freelancer/aliasManagement/new" method="get">
<button type="submit" class="button">Create New Alias Route</button>
</form>
{{/COOKIE_LOGGED_IN}}
{{> templateIncludes/freelancerLoginSignupProfileLogoutInterface.html.html}}
<br>
{{> templateIncludes/returnToIndexButton.html.html}}
</body>
</html>