This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form method="post" action="/mvc/save?Sku=abc123"> | |
<div class="mb-3"> | |
<label class="form-label">SKU</label> | |
<div class="row"> | |
<label class="form-label"><strong><a href="/mvc/images?Sku=abc123">abc123</a></strong></label> | |
</div> | |
</div> | |
<div class="mb-3"> | |
<label class="form-label">Name</label> | |
<input name="name" type="text" class="form-control" value="Domain-Driven Design: Tackling Complexity in the Heart of Software"> | |
</div> | |
<div class="mb-3"> | |
<label class="form-label">Description</label> | |
<textarea name="description" class="form-control">Leading software designers have recognized domain modeling and design as critical topics for at least twenty years, yet surprisingly little has been written about what needs to be done or how to do it. Although it has never been clearly formulated, a philosophy has developed as an undercurrent in the object community, which I call domain-driven design.</textarea> | |
</div> | |
<button type="submit" class="btn btn-primary">Save Product Info</button> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment