<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">Customers</a>
<div class="panel panel-default">
<div class="panel-heading">List of in memory customer items.</div>
@foreach(var customer in Model)
<li class="list-group-item"><b>@customer.Name</b> with Id @customer.Id</li>
<form method="POST" action="@Url.Content("~/add")" class="navbar-form">
<h2>Add a new customer to in memory list</h2>
<small>Please note that customer will be added to list, but as it doesn't save anywhere it won't be remembered between calls<br/></small>
<input type="text" name="Id" class="form-control" placeholder="Enter Id..." /><br/>
<input type="text" name="Name" class="form-control" placeholder="Enter Name..." /><br/>
<input type="submit" class="btn btn-primary" value="Add"/><br/>