mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-06-03 14:42:28 +00:00
* Initial work for user settings page * Finish user setting and slot setting pages * Don't show slot upload date on home page and fix team pick redirection * Fix upload image button alignment on mobile * Fix image upload on iPhone * Remove unused css and add selected button color * Fix login email check and bump ChromeDriver to 105 * Remove duplicated code and allow users to leave fields empty * Add unpublish button on level settings and move settings button position * Don't show edit button on mini card * Self review bug fixes and users can no longer use an in-use email
31 lines
826 B
Text
31 lines
826 B
Text
@page "/pirate"
|
|
@model LBPUnion.ProjectLighthouse.Servers.Website.Pages.PirateSignupPage
|
|
|
|
@{
|
|
Layout = "Layouts/BaseLayout";
|
|
Model.Title = "ARRRRRRRRRR!";
|
|
}
|
|
<!--suppress GrazieInspection -->
|
|
|
|
@if (Model.User!.Language != "en-PT")
|
|
{
|
|
<p>So, ye wanna be a pirate? Well, ye came to the right place!</p>
|
|
<p>Just click this 'ere button, and welcome aboard!</p>
|
|
<p>If you ever wanna walk the plank, come back 'ere.</p>
|
|
|
|
<form method="post">
|
|
@Html.AntiForgeryToken()
|
|
<input type="submit" class="ui blue button" value="Aye aye, captain!"/>
|
|
</form>
|
|
}
|
|
else
|
|
{
|
|
<p>Back so soon, aye?</p>
|
|
<p>If you're gonna walk the plank, then do it!</p>
|
|
|
|
<form method="post">
|
|
@Html.AntiForgeryToken()
|
|
<input type="submit" class="ui red button" value="Walk the plank"/>
|
|
</form>
|
|
}
|
|
|