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