mirror of
https://github.com/guilhermewerner/gerencia-projetos
synced 2025-06-16 15:05:39 +00:00
Projeto Controller
This commit is contained in:
35
GerenciaProjetos/Views/Projetos/Form.cshtml
Normal file
35
GerenciaProjetos/Views/Projetos/Form.cshtml
Normal file
@ -0,0 +1,35 @@
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "Novo Projeto";
|
||||
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||
}
|
||||
|
||||
@model GerenciaProjetos.Models.Projeto
|
||||
|
||||
<h3>@ViewData["Title"]</h3>
|
||||
<p>Subtitulo.</p>
|
||||
|
||||
<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">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Data de Entrega</label>
|
||||
<input type="date" class="form-control" asp-for="DataEntrega">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Solicitante</label>
|
||||
<input type="text" class="form-control" asp-for="Solicitante">
|
||||
</div>
|
||||
<div class="text-right">
|
||||
<a class="btn btn-secondary" asp-area="" asp-controller="Projetos" asp-action="Index" asp-route-id="">Cancelar</a>
|
||||
<button type="submit" class="btn btn-primary">Confirmar</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
Reference in New Issue
Block a user