Files
thetempusproject/app/plugins/portfolio/views/admin/create.html
Joey Kimsey 825d422d93 wip
2025-02-06 03:49:00 -05:00

19 lines
713 B
HTML

<h2>Add Portfolio Link</h2>
<form action="#" method="POST">
<label for="section">Section Name:</label><br>
<input type="text" id="section" name="section" required><br><br>
<label for="title">Title:</label><br>
<input type="text" id="title" name="title" required><br><br>
<label for="image">Image:</label><br>
<input type="text" id="image" name="image" required><br><br>
<label for="url">URL:</label><br>
<input type="text" id="url" name="url" required><br><br>
<label for="description">Description:</label><br>
<textarea id="description" name="description" rows="20" cols="50" required></textarea><br><br>
<input type="submit" name="submit" value="Submit">
</form>