From cdc61eb4ea5309769ad4db84d92594e4dc3dff67 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 20 Mar 2017 16:45:17 -0400 Subject: Initial commit (azure deploy test) --- Project-Unite/Views/Manage/Index.cshtml | 81 +++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 Project-Unite/Views/Manage/Index.cshtml (limited to 'Project-Unite/Views/Manage/Index.cshtml') 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"; +} + +
+

@if (string.IsNullOrWhiteSpace(Model.FullName)) + { @Model.DisplayName } + else { + @Model.FullName (@Model.DisplayName) + }

+
+ + +

@ViewBag.StatusMessage

+ +
+ + +
+
+ + + + + + + + + + + + + + + + + +
Full name: + @if (string.IsNullOrWhiteSpace(Model.FullName)) + { +

Not provided.

+ } + else + { +

@Model.FullName

+ } +
Display name:

@Model.DisplayName

Codepoints:

If you have your in-game system linked with your account, your Codepoints will be shown here.

@Model.Codepoints

Links + @if (!string.IsNullOrWhiteSpace(Model.YoutubeUrl)) { + + } +    + @if (!string.IsNullOrWhiteSpace(Model.Website)) { + Website + } +
+
+
+

Not yet implemented.

+

This feature has not been implemented just yet.

+
+
+

Not yet implemented.

+

This feature has not been implemented just yet.

+
+
+

Not yet implemented.

+

This feature has not been implemented just yet.

+
+
+

Not yet implemented.

+

This feature has not been implemented just yet.

+
+
+
\ No newline at end of file -- cgit v1.2.3