tiseza_oss_live/Views/Home/Index.cshtml

85 lines
3.6 KiB
Plaintext
Raw Normal View History

2025-11-15 11:14:31 +00:00
@using OSS.Models
@model LoginViewModel
@{
ViewBag.Title = "login";
Layout = "~/Views/Shared/_LoginLayout.cshtml";
}
<link href="~/Content/assets/css/authentication/form-2.css" rel="stylesheet" type="text/css" />
<div class="form-container outer">
<div class="form-form">
<div class="form-form-wrap">
<div class="form-container">
<div class="form-content">
<!-- Original -->
<!-- <img src="~/Content/img/header_logo1.jpg" /> -->
<!-- Updated -->
<h2>Tanzania Investment and Special Economic Zones Authority</h2>
<p>Online One Stop Shop System</p>
@using (Html.BeginForm("login", "Home", FormMethod.Post, new { id = "registration", @novalidate = "novalidate", @class = "needs-validation text-left" }))
{
@Html.AntiForgeryToken()
<div style="color:red;padding-left:90px;">@ViewBag.Error</div>
<div style="color:green; padding-left:90px;">@ViewBag.Success</div>
<div id="username-field" class="field-wrapper input">
<label for="username" class="text-primary left">USERNAME</label>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-user"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle></svg>
@Html.TextBoxFor(m => m.CompanyEmail, new { @class = "form-control", @id = "username", @placeholder = "Enter Email", @required = true, @type = "email" })
<div class="invalid-tooltip">
Please enter valid email
</div>
</div>
<div id="password-field" class="field-wrapper input ">
<div class="d-flex justify-content-between">
<label for="password" class="text-primary">PASSWORD</label>
</div>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-lock"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"></rect><path d="M7 11V7a5 5 0 0 1 10 0v4"></path></svg>
@Html.PasswordFor(m => m.Password, new { @class = "form-control", @id = "password", @placeholder = "Enter Password", @required = "true", @type = "password" })
<div class="invalid-tooltip">
Please enter password.
</div>
<button class="btn btn-primary mt-3 center" type="submit">Login</button>
</div>
<p class="signup-link" style="font-size:12px;"></p>
<p class="signup-link" style="font-size:12px; margin-top:7px;">New User ? <a href="/Home/RegisterUser?usr=new">Create an account</a><br />Forget Password? <a href="/Home/ResetPassword?status=new"> Reset Password</a><br />Applying for New Project, click <a href="https://teiw.tic.go.tz"> Apply New Project</a><br />For support please contact<br /> Mobile Number :+255 734 989 469</p>
}
</div>
</div>
</div>
</div>
</div>