cavecomm/templates/freelancer_Alias_Management...

32 lines
1.0 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>
<form action="/freelancer/aliasManagement/new/fulfilment" method="post">
<label for="freelanceralias">Alias Name: @</label> <input type="text" id="freelanceralias" name="freelanceralias" value=""><br>
<select name="aliasroute">
<option value="">Profile</option>
{{#templates}}
<option value="{{name}}|{{id}}">Template: {{name}}</option>
{{/templates}}
</select><br>
<button type="submit" class="button">Create new Alias</button>
</form>
{{/COOKIE_LOGGED_IN}}
{{> templateIncludes/freelancerLoginSignupProfileLogoutInterface.html.html}}
<br>
{{> templateIncludes/returnToIndexButton.html.html}}
</body>
</html>