registrazioni
This commit is contained in:
parent
893143a8a5
commit
e731c78676
@ -116,7 +116,7 @@ namespace VirtualTask.Controllers
|
|||||||
ModelState.AddModelError("anpariva", "Partita Iva non corretta");
|
ModelState.AddModelError("anpariva", "Partita Iva non corretta");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (bcodfiscOK)
|
if (bcodfiscOK && bparivaOK)
|
||||||
{
|
{
|
||||||
SessionHelper helper = new SessionHelper(this);
|
SessionHelper helper = new SessionHelper(this);
|
||||||
|
|
||||||
|
|||||||
@ -13,20 +13,27 @@ namespace VirtualTask.Controllers
|
|||||||
HttpClient client;
|
HttpClient client;
|
||||||
SessionHelper helper;
|
SessionHelper helper;
|
||||||
string errMes=string.Empty;
|
string errMes=string.Empty;
|
||||||
public LoginController()
|
private readonly IConfiguration _configuration;
|
||||||
|
|
||||||
|
|
||||||
|
public LoginController(IConfiguration configuration)
|
||||||
{
|
{
|
||||||
apiUrl = "http://10.0.0.187:8000/api/Polo/";
|
//apiUrl = "http://10.0.0.187:8000/api/Polo/";
|
||||||
|
//apiUrl = "http://testapi.poloinformatico.it:9001/api/Polo/";
|
||||||
client = new HttpClient();
|
client = new HttpClient();
|
||||||
helper = new SessionHelper(this);
|
helper = new SessionHelper(this);
|
||||||
|
_configuration = configuration;
|
||||||
|
var key = _configuration["ApplicationInsights:rootUrlApi"];
|
||||||
|
apiUrl = key;
|
||||||
}
|
}
|
||||||
public IActionResult Index()
|
public IActionResult Index()
|
||||||
{
|
{
|
||||||
return View();
|
return View();
|
||||||
}
|
}
|
||||||
public IActionResult Login()
|
//public IActionResult Login()
|
||||||
{
|
//{
|
||||||
return View();
|
// return View();
|
||||||
}
|
//}
|
||||||
|
|
||||||
|
|
||||||
[HttpPost]
|
[HttpPost]
|
||||||
@ -68,39 +75,39 @@ namespace VirtualTask.Controllers
|
|||||||
{
|
{
|
||||||
return View();
|
return View();
|
||||||
}
|
}
|
||||||
[HttpPost]
|
//[HttpPost]
|
||||||
public IActionResult Login2(Login model)
|
//public IActionResult Login2(Login model)
|
||||||
{
|
//{
|
||||||
string url = apiUrl + "loginTechnicalVT";
|
// string url = apiUrl + "loginTechnicalVT";
|
||||||
Uri baseAddress = new Uri(url);
|
// Uri baseAddress = new Uri(url);
|
||||||
client.BaseAddress = baseAddress;
|
// client.BaseAddress = baseAddress;
|
||||||
ViewBag.Error = string.Empty;
|
// ViewBag.Error = string.Empty;
|
||||||
|
|
||||||
LoginOut loginOut = new LoginOut();
|
// LoginOut loginOut = new LoginOut();
|
||||||
string data = JsonConvert.SerializeObject(model);
|
// string data = JsonConvert.SerializeObject(model);
|
||||||
StringContent content = new StringContent(data, Encoding.UTF8, "application/json");
|
// StringContent content = new StringContent(data, Encoding.UTF8, "application/json");
|
||||||
HttpResponseMessage response = client.PostAsync(baseAddress, content).Result;
|
// HttpResponseMessage response = client.PostAsync(baseAddress, content).Result;
|
||||||
if (response.IsSuccessStatusCode)
|
// if (response.IsSuccessStatusCode)
|
||||||
{
|
// {
|
||||||
string risultato = response.Content.ReadAsStringAsync().Result;
|
// string risultato = response.Content.ReadAsStringAsync().Result;
|
||||||
loginOut = JsonConvert.DeserializeObject<LoginOut>(risultato);
|
// loginOut = JsonConvert.DeserializeObject<LoginOut>(risultato);
|
||||||
|
|
||||||
helper.SetStringValue("tok", loginOut.Tok);
|
// helper.SetStringValue("tok", loginOut.Tok);
|
||||||
helper.SetStringValue("apiUrl", apiUrl);
|
// helper.SetStringValue("apiUrl", apiUrl);
|
||||||
helper.SetStringValue("tenant", model.Tenant);
|
// helper.SetStringValue("tenant", model.Tenant);
|
||||||
helper.SetStringValue("tecnico", model.Username);
|
// helper.SetStringValue("tecnico", model.Username);
|
||||||
return RedirectToAction("Index", "Home");
|
// return RedirectToAction("Index", "Home");
|
||||||
}
|
// }
|
||||||
else
|
// else
|
||||||
{
|
// {
|
||||||
errMes = response.Content.ReadAsStringAsync().Result;
|
// errMes = response.Content.ReadAsStringAsync().Result;
|
||||||
loginOut = JsonConvert.DeserializeObject<LoginOut>(errMes);
|
// loginOut = JsonConvert.DeserializeObject<LoginOut>(errMes);
|
||||||
|
|
||||||
helper.SetStringValue("errMsg", loginOut.err_detail);
|
// helper.SetStringValue("errMsg", loginOut.err_detail);
|
||||||
ViewBag.Error = loginOut.err_detail;
|
// ViewBag.Error = loginOut.err_detail;
|
||||||
return View();
|
// return View();
|
||||||
}
|
// }
|
||||||
}
|
//}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,6 +1,7 @@
|
|||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
|
using System.Reflection;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using VirtualTask.Models;
|
using VirtualTask.Models;
|
||||||
using X.PagedList;
|
using X.PagedList;
|
||||||
@ -16,10 +17,14 @@ namespace VirtualTask.Controllers
|
|||||||
string errMes = string.Empty;
|
string errMes = string.Empty;
|
||||||
|
|
||||||
HttpClient client;
|
HttpClient client;
|
||||||
|
private readonly IConfiguration _configuration;
|
||||||
|
|
||||||
public RegistrazioniController()
|
public RegistrazioniController(IConfiguration configuration)
|
||||||
{
|
{
|
||||||
client = new HttpClient();
|
client = new HttpClient();
|
||||||
|
_configuration = configuration;
|
||||||
|
var key = _configuration["ApplicationInsights:rootUrlApi"];
|
||||||
|
apiUrl = key;
|
||||||
}
|
}
|
||||||
|
|
||||||
#region INDEX
|
#region INDEX
|
||||||
@ -27,15 +32,8 @@ namespace VirtualTask.Controllers
|
|||||||
public IActionResult Index(string searchString, int? page = 1)
|
public IActionResult Index(string searchString, int? page = 1)
|
||||||
{
|
{
|
||||||
SessionHelper helper = new SessionHelper(this);
|
SessionHelper helper = new SessionHelper(this);
|
||||||
//token = helper.GetStringValue("tok");
|
urlBase = apiUrl + "RegistrazioniList";
|
||||||
|
|
||||||
//if (string.IsNullOrEmpty(token))
|
|
||||||
// return RedirectToAction("Index", "Login");
|
|
||||||
|
|
||||||
//apiUrl = helper.GetStringValue("apiUrl");
|
|
||||||
//urlBase = apiUrl + "RegistrazioniList";
|
|
||||||
urlBase = "http://10.0.0.187:8000/api/Polo/RegistrazioniList";
|
|
||||||
//urlBase = urlBase + "?token=" + token;
|
|
||||||
Uri baseAddress = new Uri(urlBase);
|
Uri baseAddress = new Uri(urlBase);
|
||||||
client = new HttpClient();
|
client = new HttpClient();
|
||||||
client.BaseAddress = baseAddress;
|
client.BaseAddress = baseAddress;
|
||||||
@ -94,20 +92,25 @@ namespace VirtualTask.Controllers
|
|||||||
{
|
{
|
||||||
SessionHelper helper = new SessionHelper(this);
|
SessionHelper helper = new SessionHelper(this);
|
||||||
|
|
||||||
//token = helper.GetStringValue("token");
|
if (ModelState.IsValid)
|
||||||
//tenant = helper.GetStringValue("tenant");
|
{
|
||||||
|
bool bAziPres = false;
|
||||||
|
bAziPres = checkAziendaPresente(model.azienda);
|
||||||
|
if (bAziPres)
|
||||||
|
{
|
||||||
|
ModelState.AddModelError("azienda", "Azienda presente in archivio. Inserire un valore diverso.");
|
||||||
|
}
|
||||||
|
bool bEmail = model.email.Equals(model.emailConf);
|
||||||
|
if (!bEmail)
|
||||||
|
{
|
||||||
|
ModelState.AddModelError("email", "I campi Email e Conferma Email devono essere uguali");
|
||||||
|
}
|
||||||
|
|
||||||
//if (string.IsNullOrEmpty(token))
|
if (!bAziPres && bEmail)
|
||||||
//{
|
{
|
||||||
// return RedirectToAction("Index", "Login");
|
|
||||||
//}
|
|
||||||
|
|
||||||
//model.azienda = tenant;
|
urlBase = apiUrl + "registrazioni/add";
|
||||||
|
//urlBase = "http://10.0.0.187:8000/api/Polo/registrazioni/add";
|
||||||
//apiUrl = helper.GetStringValue("apiUrl");
|
|
||||||
//urlBase = apiUrl + "registrazioni/add";
|
|
||||||
urlBase = "http://10.0.0.187:8000/api/Polo/registrazioni/add";
|
|
||||||
//urlBase = urlBase + "?token=" + token;
|
|
||||||
Uri baseAddress = new Uri(urlBase);
|
Uri baseAddress = new Uri(urlBase);
|
||||||
client = new HttpClient();
|
client = new HttpClient();
|
||||||
client.BaseAddress = baseAddress;
|
client.BaseAddress = baseAddress;
|
||||||
@ -118,7 +121,7 @@ namespace VirtualTask.Controllers
|
|||||||
|
|
||||||
if (response.IsSuccessStatusCode)
|
if (response.IsSuccessStatusCode)
|
||||||
{
|
{
|
||||||
return RedirectToAction("Index");
|
return RedirectToAction("RegistrazioneOk");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -127,7 +130,32 @@ namespace VirtualTask.Controllers
|
|||||||
return RedirectToAction("Error");
|
return RedirectToAction("Error");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return View("Create", model);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
foreach (var Elemento in ModelState.Values)
|
||||||
|
{
|
||||||
|
foreach (var Errore in Elemento.Errors)
|
||||||
|
{
|
||||||
|
string ErroreRilevato = Errore.ErrorMessage;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return View("Create", model);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public IActionResult RegistrazioneOk()
|
||||||
|
{
|
||||||
|
return View();
|
||||||
|
}
|
||||||
#endregion CREATE
|
#endregion CREATE
|
||||||
|
|
||||||
#region DETAILS
|
#region DETAILS
|
||||||
@ -136,10 +164,9 @@ namespace VirtualTask.Controllers
|
|||||||
{
|
{
|
||||||
SessionHelper helper = new SessionHelper(this);
|
SessionHelper helper = new SessionHelper(this);
|
||||||
|
|
||||||
//token = helper.GetStringValue("tok");
|
urlBase = apiUrl + "registrazioniList";
|
||||||
//urlBase = apiUrl + "registrazioniList";
|
//urlBase = "http://10.0.0.187:8000/api/Polo/RegistrazioniList";
|
||||||
urlBase = "http://10.0.0.187:8000/api/Polo/RegistrazioniList";
|
|
||||||
//urlBase = urlBase + "?token=" + token;
|
|
||||||
Uri baseAddress = new Uri(urlBase);
|
Uri baseAddress = new Uri(urlBase);
|
||||||
client = new HttpClient();
|
client = new HttpClient();
|
||||||
client.BaseAddress = baseAddress;
|
client.BaseAddress = baseAddress;
|
||||||
@ -154,7 +181,6 @@ namespace VirtualTask.Controllers
|
|||||||
{
|
{
|
||||||
string data = response.Content.ReadAsStringAsync().Result;
|
string data = response.Content.ReadAsStringAsync().Result;
|
||||||
modelList = JsonConvert.DeserializeObject<List<Registrazione>>(data);
|
modelList = JsonConvert.DeserializeObject<List<Registrazione>>(data);
|
||||||
//reg = modelList.Where(x => x.id.Equals(id)).First();
|
|
||||||
reg = modelList.Where(x => x.id == id).First();
|
reg = modelList.Where(x => x.id == id).First();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -319,5 +345,33 @@ namespace VirtualTask.Controllers
|
|||||||
string e = helper.GetStringValue("errMsg");
|
string e = helper.GetStringValue("errMsg");
|
||||||
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier, ErrMsg = e });
|
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier, ErrMsg = e });
|
||||||
}
|
}
|
||||||
|
private bool checkAziendaPresente(string azienda)
|
||||||
|
{
|
||||||
|
bool trovato = false;
|
||||||
|
bool bAziPres = false;
|
||||||
|
|
||||||
|
//urlBase = "http://10.0.0.187:8000/api/Polo/AziendePresentiList";
|
||||||
|
urlBase = apiUrl + "AziendePresentiList";
|
||||||
|
Uri baseAddress = new Uri(urlBase);
|
||||||
|
client = new HttpClient();
|
||||||
|
client.BaseAddress = baseAddress;
|
||||||
|
|
||||||
|
List<AziendaPres> modelList = new List<AziendaPres>();
|
||||||
|
HttpResponseMessage response = client.GetAsync(baseAddress).Result;
|
||||||
|
if (response.IsSuccessStatusCode)
|
||||||
|
{
|
||||||
|
string data = response.Content.ReadAsStringAsync().Result;
|
||||||
|
modelList = JsonConvert.DeserializeObject<List<AziendaPres>>(data);
|
||||||
|
foreach(AziendaPres a in modelList)
|
||||||
|
{
|
||||||
|
if(!string.IsNullOrEmpty(a.tccodazi) && a.tccodazi.Trim().Equals(azienda))
|
||||||
|
trovato = true;
|
||||||
|
}
|
||||||
|
bAziPres = trovato;
|
||||||
|
}
|
||||||
|
return bAziPres;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
7
Models/AziendaPres.cs
Normal file
7
Models/AziendaPres.cs
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
namespace VirtualTask.Models
|
||||||
|
{
|
||||||
|
public class AziendaPres
|
||||||
|
{
|
||||||
|
public string? tccodazi { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -1,17 +1,41 @@
|
|||||||
namespace VirtualTask.Models
|
using System.ComponentModel.DataAnnotations;
|
||||||
|
using System.Xml.Linq;
|
||||||
|
|
||||||
|
namespace VirtualTask.Models
|
||||||
{
|
{
|
||||||
public class Registrazione
|
public class Registrazione
|
||||||
{
|
{
|
||||||
public int id { get; set; }
|
public int id { get; set; }
|
||||||
|
|
||||||
|
[Display(Name = "Nome"), Required(ErrorMessage = "Nome obbligatorio")]
|
||||||
public string? nome { get; set; }
|
public string? nome { get; set; }
|
||||||
|
|
||||||
|
[Display(Name = "Cognome"), Required(ErrorMessage = "Cognome obbligatorio")]
|
||||||
public string? cognome { get; set; }
|
public string? cognome { get; set; }
|
||||||
|
|
||||||
|
[Display(Name = "Telefono"), Required(ErrorMessage = "Telefono obbligatorio")]
|
||||||
public string? telefono { get; set;}
|
public string? telefono { get; set;}
|
||||||
|
|
||||||
|
[Display(Name = "Cellulare"), Required(ErrorMessage = "Cellulare obbligatorio")]
|
||||||
public string? cellulare { get; set;}
|
public string? cellulare { get; set;}
|
||||||
|
|
||||||
|
[RegularExpression("^[a-zA-Z0-9_\\.-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,6}$", ErrorMessage = "formato campo Email non valido")]
|
||||||
|
[Display(Name = "Email"), Required(ErrorMessage = "Email obbligatorio")]
|
||||||
public string? email { get; set;}
|
public string? email { get; set;}
|
||||||
|
|
||||||
|
[RegularExpression("^[a-zA-Z0-9_\\.-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,6}$", ErrorMessage = "formato campo Conferma Email non valido")]
|
||||||
|
[Display(Name = "Conferma Email"), Required(ErrorMessage = "Conferma Email obbligatorio")]
|
||||||
public string? emailConf { get; set;}
|
public string? emailConf { get; set;}
|
||||||
|
|
||||||
|
[Display(Name = "Azienda"), Required(ErrorMessage = "Azienda obbligatorio")]
|
||||||
public string? azienda { get; set; }
|
public string? azienda { get; set; }
|
||||||
|
|
||||||
|
[Display(Name = "Username"), Required(ErrorMessage = "Username obbligatorio")]
|
||||||
public string? username { get; set; }
|
public string? username { get; set; }
|
||||||
|
|
||||||
|
[Display(Name = "Password"), Required(ErrorMessage = "Password obbligatorio")]
|
||||||
public string? passwd { get; set;}
|
public string? passwd { get; set;}
|
||||||
|
|
||||||
public string? citta { get; set;}
|
public string? citta { get; set;}
|
||||||
public string? provincia { get; set;}
|
public string? provincia { get; set;}
|
||||||
public string? nazione { get; set;}
|
public string? nazione { get; set;}
|
||||||
|
|||||||
@ -11,90 +11,93 @@
|
|||||||
<h4 class="agy-sub-heading">@ViewData["Title"]</h4>
|
<h4 class="agy-sub-heading">@ViewData["Title"]</h4>
|
||||||
<form asp-action="Create">
|
<form asp-action="Create">
|
||||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||||
@Html.HiddenFor(x => x.id)
|
@Html.ValidationSummary(false, "", new { @class = "text-danger" })
|
||||||
@Html.HiddenFor(x => x.attivato)
|
|
||||||
|
<input type="hidden" id="id" value="0" name="id" />
|
||||||
|
<input type="hidden" id="attivato" value="N" name="attivato" />
|
||||||
|
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
|
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
|
||||||
<div class="agy-field-holder">
|
<div class="agy-field-holder">
|
||||||
<input asp-for="nome" class="agy-form-field require" placeholder="Nome" />
|
<input asp-for="nome" class="agy-form-field" placeholder="Nome" />
|
||||||
<span asp-validation-for="nome" class="text-danger"></span>
|
@* <span asp-validation-for="nome" class="text-danger"></span>*@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
|
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
|
||||||
<div class="agy-field-holder">
|
<div class="agy-field-holder">
|
||||||
<input asp-for="cognome" class="agy-form-field require" placeholder="Cognome" />
|
<input asp-for="cognome" class="agy-form-field" placeholder="Cognome" />
|
||||||
<span asp-validation-for="cognome" class="text-danger"></span>
|
@*<span asp-validation-for="cognome" class="text-danger"></span>*@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
|
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
|
||||||
<div class="agy-field-holder">
|
<div class="agy-field-holder">
|
||||||
<input asp-for="telefono" class="agy-form-field require" placeholder="Telefono" />
|
<input asp-for="telefono" class="agy-form-field" placeholder="Telefono" />
|
||||||
<span asp-validation-for="telefono" class="text-danger"></span>
|
@*<span asp-validation-for="telefono" class="text-danger"></span>*@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
|
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
|
||||||
<div class="agy-field-holder">
|
<div class="agy-field-holder">
|
||||||
<input asp-for="cellulare" class="agy-form-field require" placeholder="Cellulare" />
|
<input asp-for="cellulare" class="agy-form-field" placeholder="Cellulare" />
|
||||||
<span asp-validation-for="cellulare" class="text-danger"></span>
|
@*<span asp-validation-for="cellulare" class="text-danger"></span>*@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
|
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
|
||||||
<div class="agy-field-holder">
|
<div class="agy-field-holder">
|
||||||
<input asp-for="email" class="agy-form-field require" placeholder="Email" />
|
<input asp-for="email" class="agy-form-field" placeholder="Email" />
|
||||||
<span asp-validation-for="email" class="text-danger"></span>
|
@*<span asp-validation-for="email" class="text-danger"></span>*@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
|
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
|
||||||
<div class="agy-field-holder">
|
<div class="agy-field-holder">
|
||||||
<input asp-for="emailConf" class="agy-form-field require" placeholder="Conferma Email" />
|
<input asp-for="emailConf" class="agy-form-field" placeholder="Conferma Email" />
|
||||||
<span asp-validation-for="emailConf" class="text-danger"></span>
|
@*<span asp-validation-for="emailConf" class="text-danger"></span>*@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
|
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
|
||||||
<div class="agy-field-holder">
|
<div class="agy-field-holder">
|
||||||
<input asp-for="azienda" class="agy-form-field require" placeholder="Azienda" />
|
<input asp-for="azienda" class="agy-form-field" placeholder="Azienda" />
|
||||||
<span asp-validation-for="azienda" class="text-danger"></span>
|
@*<span asp-validation-for="azienda" class="text-danger"></span>*@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
|
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
|
||||||
<div class="agy-field-holder">
|
<div class="agy-field-holder">
|
||||||
<input asp-for="citta" class="agy-form-field require" placeholder="Città" />
|
<input asp-for="citta" class="agy-form-field" placeholder="Città" />
|
||||||
<span asp-validation-for="citta" class="text-danger"></span>
|
@*<span asp-validation-for="citta" class="text-danger"></span>*@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
|
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
|
||||||
<div class="agy-field-holder">
|
<div class="agy-field-holder">
|
||||||
<input asp-for="provincia" class="agy-form-field require" placeholder="Provincia" />
|
<input asp-for="provincia" class="agy-form-field" placeholder="Provincia" />
|
||||||
<span asp-validation-for="provincia" class="text-danger"></span>
|
@*<span asp-validation-for="provincia" class="text-danger"></span>*@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
|
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
|
||||||
<div class="agy-field-holder">
|
<div class="agy-field-holder">
|
||||||
<input asp-for="nazione" class="agy-form-field require" placeholder="Nazione" />
|
<input asp-for="nazione" class="agy-form-field" placeholder="Nazione" />
|
||||||
<span asp-validation-for="nazione" class="text-danger"></span>
|
@*<span asp-validation-for="nazione" class="text-danger"></span>*@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
|
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
|
||||||
<div class="agy-field-holder">
|
<div class="agy-field-holder">
|
||||||
<input asp-for="username" class="agy-form-field require" placeholder="Username" />
|
<input asp-for="username" class="agy-form-field" placeholder="Username" />
|
||||||
<span asp-validation-for="username" class="text-danger"></span>
|
@* <span asp-validation-for="username" class="text-danger"></span>*@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
|
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
|
||||||
<div class="agy-field-holder">
|
<div class="agy-field-holder">
|
||||||
<input asp-for="passwd" class="agy-form-field require" placeholder="Password" />
|
<input asp-for="passwd" class="agy-form-field" placeholder="Password" />
|
||||||
<span asp-validation-for="passwd" class="text-danger"></span>
|
@* <span asp-validation-for="passwd" class="text-danger"></span>*@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-lg-12 col-md-12 col-sm-12 col-12">
|
<div class="col-lg-12 col-md-12 col-sm-12 col-12">
|
||||||
<button type="button" class="agy-btn submitForm">Submit</button>
|
<button type="submit" class="agy-btn submitForm">Submit</button>
|
||||||
<div class="response"></div>
|
<div class="response"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
15
Views/Registrazioni/RegistrazioneOk.cshtml
Normal file
15
Views/Registrazioni/RegistrazioneOk.cshtml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
@{
|
||||||
|
ViewData["Title"] = "Registrazione Inviata con successo";
|
||||||
|
Layout = "~/Views/Shared/_Layout2.cshtml";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
<div class="col-lg-8 col-md-12 col-sm-12 col-12">
|
||||||
|
<div class="agy-contact-form">
|
||||||
|
<h4 class="agy-sub-heading">@ViewData["Title"]</h4>
|
||||||
|
<div class="row">Grazie per esserti registrato</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -4,6 +4,7 @@
|
|||||||
<TargetFramework>net6.0</TargetFramework>
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<PublishSingleFile>false</PublishSingleFile>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@ -5,5 +5,8 @@
|
|||||||
"Microsoft.AspNetCore": "Warning"
|
"Microsoft.AspNetCore": "Warning"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"ApplicationInsights": {
|
||||||
|
"rootUrlApi": "http://testapi.poloinformatico.it:9001/api/Polo/"
|
||||||
|
},
|
||||||
"AllowedHosts": "*"
|
"AllowedHosts": "*"
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user