17 lines
457 B
HTML
17 lines
457 B
HTML
<form>
|
|
<div>
|
|
<label for="title">Post title:</label>
|
|
<input type="text" id="title" name="title" value="blog post">
|
|
</div>
|
|
<div>
|
|
<label for="content">Post content:</label>
|
|
<textarea id="content" name="content" cols="60" rows="5">
|
|
Welcome to my blog post!
|
|
</textarea>
|
|
</div>
|
|
<div>
|
|
<button type="submit">Update post</button>
|
|
</div>
|
|
<input type="hidden" id="userId" name="userId" value="5239asbd923fade923da">
|
|
</form>
|