From 00a491d93733d4625ad329b2ba8237f445364b3f Mon Sep 17 00:00:00 2001 From: Mirta Date: Wed, 30 Dec 2020 16:39:52 +0200 Subject: merge --- .../Views/FSEAccount/ResetPassword.cshtml | 26 -------------- .../Views/FSEAccount/ResetPasswordVM.cs | 13 ------- .../Views/FSEDownloads/Index.cshtml | 39 -------------------- .../Views/FSEDownloads/IndexViewModel.cs | 27 -------------- .../Views/Shared/_FSELayout.cshtml | 42 ---------------------- 5 files changed, 147 deletions(-) delete mode 100644 Software/Visual_Studio/Web/Tango.MachineService/Views/FSEAccount/ResetPassword.cshtml delete mode 100644 Software/Visual_Studio/Web/Tango.MachineService/Views/FSEAccount/ResetPasswordVM.cs delete mode 100644 Software/Visual_Studio/Web/Tango.MachineService/Views/FSEDownloads/Index.cshtml delete mode 100644 Software/Visual_Studio/Web/Tango.MachineService/Views/FSEDownloads/IndexViewModel.cs delete mode 100644 Software/Visual_Studio/Web/Tango.MachineService/Views/Shared/_FSELayout.cshtml (limited to 'Software/Visual_Studio/Web/Tango.MachineService/Views') diff --git a/Software/Visual_Studio/Web/Tango.MachineService/Views/FSEAccount/ResetPassword.cshtml b/Software/Visual_Studio/Web/Tango.MachineService/Views/FSEAccount/ResetPassword.cshtml deleted file mode 100644 index f0281d462..000000000 --- a/Software/Visual_Studio/Web/Tango.MachineService/Views/FSEAccount/ResetPassword.cshtml +++ /dev/null @@ -1,26 +0,0 @@ -@model Tango.MachineService.Views.FSEAccount.ResetPasswordVM - -@{ - Layout = "~/Views/Shared/_FSELayout.cshtml"; -} - - - -
- -

Hello @Model.FullName,

-
-

Your Tango FSE password was successfully reset

-
Your new temporary password is:
-
@Model.Password
-
-
Please login to your account using the Tango FSE software to complete the process
-
- diff --git a/Software/Visual_Studio/Web/Tango.MachineService/Views/FSEAccount/ResetPasswordVM.cs b/Software/Visual_Studio/Web/Tango.MachineService/Views/FSEAccount/ResetPasswordVM.cs deleted file mode 100644 index c1a1a3106..000000000 --- a/Software/Visual_Studio/Web/Tango.MachineService/Views/FSEAccount/ResetPasswordVM.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Web; - -namespace Tango.MachineService.Views.FSEAccount -{ - public class ResetPasswordVM - { - public String FullName { get; set; } - public String Password { get; set; } - } -} \ No newline at end of file diff --git a/Software/Visual_Studio/Web/Tango.MachineService/Views/FSEDownloads/Index.cshtml b/Software/Visual_Studio/Web/Tango.MachineService/Views/FSEDownloads/Index.cshtml deleted file mode 100644 index 7353ab76e..000000000 --- a/Software/Visual_Studio/Web/Tango.MachineService/Views/FSEDownloads/Index.cshtml +++ /dev/null @@ -1,39 +0,0 @@ -@model Tango.MachineService.Views.FSEDownloads.IndexViewModel - -@{ - Layout = "~/Views/Shared/_FSELayout.cshtml"; -} - - -
- - @foreach (var item in Model.Downloads) - { -
-
- - @item.Name - @item.Date -
-
- -
-
- @item.Comments -
- - - Download - -
- } -
- -
- -
Download Latest Version
-
v@(Model.LatestDownload.Version)
-
@Model.LatestDownload.Comments
- DOWNLOAD -
- diff --git a/Software/Visual_Studio/Web/Tango.MachineService/Views/FSEDownloads/IndexViewModel.cs b/Software/Visual_Studio/Web/Tango.MachineService/Views/FSEDownloads/IndexViewModel.cs deleted file mode 100644 index 398b5fcc1..000000000 --- a/Software/Visual_Studio/Web/Tango.MachineService/Views/FSEDownloads/IndexViewModel.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Web; - -namespace Tango.MachineService.Views.FSEDownloads -{ - public class IndexViewModel - { - public List Downloads { get; set; } - public FSEDownload LatestDownload { get; set; } - - public IndexViewModel() - { - Downloads = new List(); - } - } - - public class FSEDownload - { - public String Name { get; set; } - public String Version { get; set; } - public String Date { get; set; } - public String Comments { get; set; } - public String Address { get; set; } - } -} \ No newline at end of file diff --git a/Software/Visual_Studio/Web/Tango.MachineService/Views/Shared/_FSELayout.cshtml b/Software/Visual_Studio/Web/Tango.MachineService/Views/Shared/_FSELayout.cshtml deleted file mode 100644 index 15ca9f651..000000000 --- a/Software/Visual_Studio/Web/Tango.MachineService/Views/Shared/_FSELayout.cshtml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - @ViewBag.Title - @*@Styles.Render("~/Content/css")*@ - @*@Scripts.Render("~/bundles/modernizr")*@ - - - @RenderSection("styles", required: false) - - - -
- -
- -
-
- -
-
- -
- - Tango FSE - -
- -
-
- @RenderBody() -
-
-
- - @Scripts.Render("~/bundles/jquery") - @*@Scripts.Render("~/bundles/bootstrap")*@ - @RenderSection("scripts", required: false) - - -- cgit v1.3.1