ASP Classic blog framework - BrainOrdure
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <div class="row">
- <div class="col-lg-8">
- <div class="card shadow-sm">
- <div class="card-body">
- <h1 class="h3 mb-4">New Post</h1>
-
- <form method="post" action="<%= PostsUrl() %>">
- <div class="mb-3">
- <label class="form-label" for="Title">Title</label>
- <input class="form-control" type="text" id="Title" name="Title" required>
- </div>
-
- <div class="mb-3">
- <label class="form-label" for="Summary">Summary</label>
- <textarea class="form-control" id="Summary" name="Summary" rows="3"></textarea>
- </div>
-
- <div class="mb-3">
- <label class="form-label" for="Body">Body</label>
- <textarea class="form-control" id="Body" name="Body" rows="10" required></textarea>
- </div>
-
- <div class="mb-4">
- <label class="form-label" for="CategoryID">Category ID</label>
- <input class="form-control" type="number" id="CategoryID" name="CategoryID" min="0" value="0">
- </div>
-
- <div class="d-flex gap-2">
- <button class="btn btn-primary" type="submit">Create Post</button>
- <a class="btn btn-outline-secondary" href="<%= PostsUrl() %>">Cancel</a>
- </div>
- </form>
- </div>
- </div>
- </div>
- </div>
|