diff options
| author | Michael <[email protected]> | 2017-03-20 16:45:17 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-03-20 16:45:17 -0400 |
| commit | cdc61eb4ea5309769ad4db84d92594e4dc3dff67 (patch) | |
| tree | a8297a7aecc4376f07a497a5e02ab5ff165bfbd3 /Project-Unite/Views/Manage/Index.cshtml | |
| parent | d9f475e1f33bbf39ca0d79d7a6b0c2fd501b4f2d (diff) | |
| download | project-unite-cdc61eb4ea5309769ad4db84d92594e4dc3dff67.tar.gz project-unite-cdc61eb4ea5309769ad4db84d92594e4dc3dff67.tar.bz2 project-unite-cdc61eb4ea5309769ad4db84d92594e4dc3dff67.zip | |
Initial commit (azure deploy test)
Diffstat (limited to 'Project-Unite/Views/Manage/Index.cshtml')
| -rw-r--r-- | Project-Unite/Views/Manage/Index.cshtml | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/Project-Unite/Views/Manage/Index.cshtml b/Project-Unite/Views/Manage/Index.cshtml new file mode 100644 index 0000000..8b18401 --- /dev/null +++ b/Project-Unite/Views/Manage/Index.cshtml @@ -0,0 +1,81 @@ +@model Project_Unite.Models.ApplicationUser +@{ + ViewBag.Title = "My profile"; +} + +<div class="row"> + <h3><img src="@Model.AvatarUrl" width="64" height="64" /> @if (string.IsNullOrWhiteSpace(Model.FullName)) + { <strong> @Model.DisplayName </strong>} + else { + <strong>@Model.FullName</strong> <em>(@Model.DisplayName)</em> + }</h3> +</div> + + +<p class="text-success">@ViewBag.StatusMessage</p> + +<div class="row"> + <ul id="tabs" data-tabs="tabs" class="nav nav-tabs" role="tablist"> + <li class="active"><a data-toggle="tab" href="#t_profile">Profile</a></li> + <li><a data-toggle="tab" href="#t_badges">Badges</a></li> + <li><a data-toggle="tab" href="#t_posts">Posts</a></li> + <li><a data-toggle="tab" href="#t_messages">Messages</a></li> + <li><a data-toggle="tab" href="#t_preferences">Preferences</a></li> + </ul> + + <div class="tab-content"> + <div class="tab-pane active" id="t_profile"> + <table class="table"> + <tr> + <td><strong>Full name:</strong></td> + <td> + @if (string.IsNullOrWhiteSpace(Model.FullName)) + { + <p><em>Not provided.</em></p> + } + else + { + <p>@Model.FullName</p> + } + </td> + </tr> + <tr> + <td><strong>Display name:</strong></td> + <td><p>@Model.DisplayName</p></td> + </tr> + <tr> + <td><strong>Codepoints:</strong><p>If you have your in-game system linked with your account, your Codepoints will be shown here.</p></td> + <td><p>@Model.Codepoints</p></td> + </tr> + <tr> + <td>Links</td> + <td> + @if (!string.IsNullOrWhiteSpace(Model.YoutubeUrl)) { + <a href="@Model.YoutubeUrl"><span class="glyphicon glyphicon-hd-video"></span></a> + } + + @if (!string.IsNullOrWhiteSpace(Model.Website)) { + <a href="@Model.Website">Website</a> + } + </td> + </tr> + </table> + </div> + <div class="tab-pane" id="t_badges"> + <h4>Not yet implemented.</h4> + <p>This feature has not been implemented just yet.</p> + </div> + <div class="tab-pane" id="t_posts"> + <h4>Not yet implemented.</h4> + <p>This feature has not been implemented just yet.</p> + </div> + <div class="tab-pane" id="t_messages"> + <h4>Not yet implemented.</h4> + <p>This feature has not been implemented just yet.</p> + </div> + <div class="tab-pane" id="t_preferences"> + <h4>Not yet implemented.</h4> + <p>This feature has not been implemented just yet.</p> + </div> + </div> +</div>
\ No newline at end of file |
