mirror of
https://github.com/guilhermewerner/gerencia-projetos
synced 2025-06-16 15:05:39 +00:00
42 lines
1.5 KiB
Plaintext
42 lines
1.5 KiB
Plaintext
|
|
@{
|
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
|
}
|
|
|
|
@model GerenciaProjetos.Models.Projeto
|
|
|
|
<h3>@ViewData["Title"]</h3>
|
|
|
|
<section class="py-3">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<form method="post">
|
|
<div class="form-group">
|
|
<label>Nome</label>
|
|
<input type="text" class="form-control" asp-for="Nome">
|
|
<small>
|
|
<span asp-validation-for="Nome" class="text-danger"></span>
|
|
</small>
|
|
</div>
|
|
<div class="form-group">
|
|
<label>Data de Entrega</label>
|
|
<input type="date" class="form-control" asp-for="DataEntrega">
|
|
<small>
|
|
<span asp-validation-for="DataEntrega" class="text-danger"></span>
|
|
</small>
|
|
</div>
|
|
<div class="form-group">
|
|
<label>Solicitante</label>
|
|
<input type="text" class="form-control" asp-for="Solicitante">
|
|
<small>
|
|
<span asp-validation-for="Solicitante" class="text-danger"></span>
|
|
</small>
|
|
</div>
|
|
<div class="text-right">
|
|
<a class="btn btn-secondary" asp-area="" asp-controller="Dashboard" asp-action="Index" asp-route-id="">Cancelar</a>
|
|
<button type="submit" class="btn btn-primary">Confirmar</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</section> |