mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
66 lines
2.7 KiB
Plaintext
66 lines
2.7 KiB
Plaintext
@model DiscImageChef.Server.Models.OperatingSystem
|
|
|
|
@{
|
|
Layout = "~/Areas/Admin/Views/Shared/_Layout.cshtml";
|
|
ViewBag.Title = "DiscImageChef";
|
|
}
|
|
@{
|
|
// /***************************************************************************
|
|
// The Disc Image Chef
|
|
// ----------------------------------------------------------------------------
|
|
//
|
|
// Filename : Create.cshtml
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
//
|
|
// Component : DiscImageChef Server.
|
|
//
|
|
// --[ License ] --------------------------------------------------------------
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU Lesser General Public License as
|
|
// published by the Free Software Foundation; either version 2.1 of the
|
|
// License, or (at your option) any later version.
|
|
//
|
|
// This library is distributed in the hope that it will be useful, but
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
// Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
// License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
//
|
|
// ----------------------------------------------------------------------------
|
|
// Copyright © 2011-2019 Natalia Portillo
|
|
// ****************************************************************************/
|
|
}
|
|
<h4>OperatingSystem</h4>
|
|
<hr />
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
<form asp-action="Create">
|
|
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
|
<div class="form-group">
|
|
<label asp-for="Name" class="control-label"></label>
|
|
<input asp-for="Name" class="form-control" />
|
|
<span asp-validation-for="Name" class="text-danger"></span>
|
|
</div>
|
|
<div class="form-group">
|
|
<label asp-for="Version" class="control-label"></label>
|
|
<input asp-for="Version" class="form-control" />
|
|
<span asp-validation-for="Version" class="text-danger"></span>
|
|
</div>
|
|
<div class="form-group">
|
|
<label asp-for="Count" class="control-label"></label>
|
|
<input asp-for="Count" class="form-control" />
|
|
<span asp-validation-for="Count" class="text-danger"></span>
|
|
</div>
|
|
<div class="form-group">
|
|
<input class="btn btn-primary" type="submit" value="Create" />
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<a asp-action="Index">Back to List</a>
|
|
</div>
|