Mr.Combet Webshell
Your IP :
216.73.216.136
Server IP :
103.233.58.157
Server :
Windows NT WIN-4PGF72KEHKB 10.0 build 17763 (Windows Server 2016) AMD64
Server Software :
Microsoft-IIS/10.0
PHP Version :
7.3.25
Add File :
Submit
Add Directory :
Submit
Dir :
C:
/
inetpub
/
wwwroot
/
DoorstepHealthCare
/
Views
/
Login
/
View File Name :
Login.cshtml
@model DoorstepHealthCare.Models.UserViewModel @{ Layout = null; } <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>HRDC :: Admin Login</title> <!-- BOOTSTRAP STYLES--> <link href="~/Content/Assets/css/bootstrap.css" rel="stylesheet" /> <!-- FONTAWESOME STYLES--> <link href="~/Content/fonts/font-awesome-4.1.0/css/font-awesome.min.css" rel="stylesheet" /> <!-- GOOGLE FONTS--> <link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css' /> </head> <body style="background-color: #E2E2E2;"> <div class="container"> <div class="row text-center " style="padding-top:100px;"> <div class="col-md-12"> <img src="~/Content/Assets/img/logob.png" /> <h3>Doorstep Health Service</h3> </div> </div> <div class="row "> <div class="col-md-4 col-md-offset-4 col-sm-6 col-sm-offset-3 col-xs-10 col-xs-offset-1"> <div class="panel-body"> @using (Html.BeginForm("Login", "Login", FormMethod.Post, new { @class = "m-t" })) { @Html.AntiForgeryToken() <hr /> <h5>Enter Details to Login</h5> <br /> @Html.ValidationMessageFor(model => model.UserName, "", new { @class = "text-danger" }) <div class="form-group input-group"> <span class="input-group-addon"><i class="fa fa-tag"></i></span> @Html.EditorFor(model => model.UserName, new { htmlAttributes = new { @class = "form-control", id = "UserName", placeholder = "User Name" } }) </div> @Html.ValidationMessageFor(model => model.Password, "", new { @class = "text-danger" }) <div class="form-group input-group"> <span class="input-group-addon"><i class="fa fa-lock"></i></span> @Html.EditorFor(model => model.Password, new { htmlAttributes = new { @class = "form-control password full-width", id = "password", placeholder = "Password", name = "password", Type = "password" } }) </div> <button type="submit" class="btn btn-primary block full-width m-b">Login Now</button> } </div> </div> </div> </div> </body> </html>