fix: email validation on registration, topnav links
feat: add user session
This commit is contained in:
parent
0472075a7b
commit
aeb439e2bb
9
TicketOffice/Pages/Account/Index.cshtml
Normal file
9
TicketOffice/Pages/Account/Index.cshtml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
@page
|
||||||
|
@model TicketOffice.Pages.Account.Index
|
||||||
|
|
||||||
|
@{
|
||||||
|
Layout = "~/Pages/Shared/_Layout.cshtml";
|
||||||
|
ViewData["Title"] = "Аккаунт";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
10
TicketOffice/Pages/Account/Index.cshtml.cs
Normal file
10
TicketOffice/Pages/Account/Index.cshtml.cs
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
||||||
|
|
||||||
|
namespace TicketOffice.Pages.Account;
|
||||||
|
|
||||||
|
public class Index : PageModel
|
||||||
|
{
|
||||||
|
public void OnGet()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
@ -30,7 +30,7 @@
|
|||||||
|
|
||||||
<div class="hint">
|
<div class="hint">
|
||||||
Не маєте аккаунта?
|
Не маєте аккаунта?
|
||||||
<a href="/auth/registration" class="link">Зареєструватись</a>
|
<a href="/Auth/Registration" class="link">Зареєструватись</a>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
@ -14,7 +14,7 @@ public class LoginModel : PageModel
|
|||||||
[BindProperty] public string Password { get; set; }
|
[BindProperty] public string Password { get; set; }
|
||||||
public string emailValidation;
|
public string emailValidation;
|
||||||
public string passwordValidation;
|
public string passwordValidation;
|
||||||
|
|
||||||
private readonly TicketOfficeContext _context;
|
private readonly TicketOfficeContext _context;
|
||||||
|
|
||||||
public LoginModel(TicketOfficeContext context)
|
public LoginModel(TicketOfficeContext context)
|
||||||
@ -24,6 +24,11 @@ public class LoginModel : PageModel
|
|||||||
|
|
||||||
public IActionResult OnGet()
|
public IActionResult OnGet()
|
||||||
{
|
{
|
||||||
|
if (HttpContext.Session.GetInt32("UserId") != null)
|
||||||
|
{
|
||||||
|
return RedirectToPage("/Account/Index");
|
||||||
|
}
|
||||||
|
|
||||||
return Page();
|
return Page();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -38,7 +43,9 @@ public class LoginModel : PageModel
|
|||||||
|
|
||||||
if (ValidateEmail(Email, out emailValidation) && ValidatePassword(Password, out passwordValidation))
|
if (ValidateEmail(Email, out emailValidation) && ValidatePassword(Password, out passwordValidation))
|
||||||
{
|
{
|
||||||
return RedirectToPage("/Index");
|
HttpContext.Session.SetInt32("UserId", User.First().Id);
|
||||||
|
|
||||||
|
return RedirectToPage("Account/Index");
|
||||||
}
|
}
|
||||||
|
|
||||||
return Page();
|
return Page();
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
|
|
||||||
<div class="hint">
|
<div class="hint">
|
||||||
Вже маєте аккаунт?
|
Вже маєте аккаунт?
|
||||||
<a href="/auth/login" class="link">Авторизуватись</a>
|
<a href="/Auth/Login" class="link">Авторизуватись</a>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
@ -14,7 +14,7 @@ public class RegistrationModel : PageModel
|
|||||||
[BindProperty] public string Password { get; set; }
|
[BindProperty] public string Password { get; set; }
|
||||||
public string emailValidation;
|
public string emailValidation;
|
||||||
public string passwordValidation;
|
public string passwordValidation;
|
||||||
|
|
||||||
private readonly TicketOfficeContext _context;
|
private readonly TicketOfficeContext _context;
|
||||||
|
|
||||||
public RegistrationModel(TicketOfficeContext context)
|
public RegistrationModel(TicketOfficeContext context)
|
||||||
@ -24,6 +24,11 @@ public class RegistrationModel : PageModel
|
|||||||
|
|
||||||
public IActionResult OnGet()
|
public IActionResult OnGet()
|
||||||
{
|
{
|
||||||
|
if (HttpContext.Session.GetInt32("UserId") != null)
|
||||||
|
{
|
||||||
|
return RedirectToPage("/Account/Index");
|
||||||
|
}
|
||||||
|
|
||||||
emailValidation = String.Empty;
|
emailValidation = String.Empty;
|
||||||
passwordValidation = String.Empty;
|
passwordValidation = String.Empty;
|
||||||
|
|
||||||
@ -45,7 +50,14 @@ public class RegistrationModel : PageModel
|
|||||||
});
|
});
|
||||||
await _context.SaveChangesAsync();
|
await _context.SaveChangesAsync();
|
||||||
|
|
||||||
return RedirectToPage("/Index");
|
|
||||||
|
User = await _context.User
|
||||||
|
.Where(u => u.Email == Email)
|
||||||
|
.ToListAsync();
|
||||||
|
|
||||||
|
HttpContext.Session.SetInt32("UserId", User.First().Id);
|
||||||
|
|
||||||
|
return RedirectToPage("Account/Index");
|
||||||
}
|
}
|
||||||
|
|
||||||
return Page();
|
return Page();
|
||||||
|
@ -16,13 +16,20 @@
|
|||||||
|
|
||||||
<div class="topnav">
|
<div class="topnav">
|
||||||
@{
|
@{
|
||||||
string path = @Model.Request.Path.ToString();
|
string path = Model.Request.Path.ToString().ToLower();
|
||||||
}
|
}
|
||||||
|
|
||||||
<a class="@(path == "/" ? "active" : "")" href="/">Головна</a>
|
<a class="@(path == "/" ? "active" : "")" href="/">Головна</a>
|
||||||
<a class="@(path.Contains("routes") ? "active" : "")" href="/routes">Пошук маршрутів</a>
|
<a class="@(path.Contains("routes") ? "active" : "")" href="/Routes">Пошук маршрутів</a>
|
||||||
<div class="topnav-right">
|
<div class="topnav-right">
|
||||||
<a class="@(path.Contains("auth") ? "active" : "")" href="/auth/login">Авторизація</a>
|
@if (Context.Session.GetString("UserId") != null)
|
||||||
|
{
|
||||||
|
<a class="@(path.Contains("account") ? "active" : "")" href="/Account">Аккаунт</a>
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
<a class="@(path.Contains("auth") ? "active" : "")" href="/Auth/Login">Авторизація</a>
|
||||||
|
}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -1,48 +0,0 @@
|
|||||||
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
|
|
||||||
for details on configuring this project to bundle and minify static web assets. */
|
|
||||||
|
|
||||||
a.navbar-brand {
|
|
||||||
white-space: normal;
|
|
||||||
text-align: center;
|
|
||||||
word-break: break-all;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: #0077cc;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-primary {
|
|
||||||
color: #fff;
|
|
||||||
background-color: #1b6ec2;
|
|
||||||
border-color: #1861ac;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
|
|
||||||
color: #fff;
|
|
||||||
background-color: #1b6ec2;
|
|
||||||
border-color: #1861ac;
|
|
||||||
}
|
|
||||||
|
|
||||||
.border-top {
|
|
||||||
border-top: 1px solid #e5e5e5;
|
|
||||||
}
|
|
||||||
.border-bottom {
|
|
||||||
border-bottom: 1px solid #e5e5e5;
|
|
||||||
}
|
|
||||||
|
|
||||||
.box-shadow {
|
|
||||||
box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
|
|
||||||
}
|
|
||||||
|
|
||||||
button.accept-policy {
|
|
||||||
font-size: 1rem;
|
|
||||||
line-height: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer {
|
|
||||||
position: absolute;
|
|
||||||
bottom: 0;
|
|
||||||
width: 100%;
|
|
||||||
white-space: nowrap;
|
|
||||||
line-height: 60px;
|
|
||||||
}
|
|
@ -5,11 +5,20 @@ using TicketOffice.Models;
|
|||||||
var builder = WebApplication.CreateBuilder(args);
|
var builder = WebApplication.CreateBuilder(args);
|
||||||
|
|
||||||
// Add services to the container.
|
// Add services to the container.
|
||||||
builder.Services.AddRazorPages();
|
builder.Services.AddRazorPages()
|
||||||
|
.AddSessionStateTempDataProvider();;
|
||||||
|
|
||||||
builder.Services.AddDbContext<TicketOfficeContext>(options =>
|
builder.Services.AddDbContext<TicketOfficeContext>(options =>
|
||||||
options.UseSqlite(builder.Configuration.GetConnectionString("TicketOfficeContext")));
|
options.UseSqlite(builder.Configuration.GetConnectionString("TicketOfficeContext")));
|
||||||
|
|
||||||
|
builder.Services.AddDistributedMemoryCache();
|
||||||
|
builder.Services.AddSession(options =>
|
||||||
|
{
|
||||||
|
options.Cookie.Name = ".AutoBus.Session";
|
||||||
|
options.IdleTimeout = TimeSpan.FromSeconds(10);
|
||||||
|
options.Cookie.IsEssential = true;
|
||||||
|
});
|
||||||
|
|
||||||
var app = builder.Build();
|
var app = builder.Build();
|
||||||
|
|
||||||
using var scope = app.Services.CreateScope();
|
using var scope = app.Services.CreateScope();
|
||||||
@ -30,6 +39,8 @@ app.UseHttpsRedirection();
|
|||||||
|
|
||||||
app.UseRouting();
|
app.UseRouting();
|
||||||
|
|
||||||
|
app.UseSession();
|
||||||
|
|
||||||
app.MapRazorPages();
|
app.MapRazorPages();
|
||||||
|
|
||||||
app.Run();
|
app.Run();
|
||||||
|
@ -9,11 +9,11 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Folder Include="Data" />
|
<Folder Include="Data" />
|
||||||
<Folder Include="Migrations" />
|
<Folder Include="Migrations" />
|
||||||
<Folder Include="Pages\Management" />
|
|
||||||
<Folder Include="wwwroot\db" />
|
<Folder Include="wwwroot\db" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Microsoft.AspNetCore.Session" Version="2.2.0" />
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.3" />
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.3" />
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.3">
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.3">
|
||||||
<PrivateAssets>all</PrivateAssets>
|
<PrivateAssets>all</PrivateAssets>
|
||||||
|
Loading…
Reference in New Issue
Block a user