26 lines
996 B
HTML
26 lines
996 B
HTML
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
|
|
<form action="/admin/article" method="post">
|
|
|
|
{% if article.id %}<input type="hidden" name="id" value="{{ article.id }}">{% endif %}
|
|
<input type="text" name="title" placeholder="title" required value="{{ article.title }}">
|
|
<input type="text" name="url" placeholder="url" value="{{ article.url }}">
|
|
<input type="hidden" name="user_id" value="{{ article.user_id }}">
|
|
<textarea name="body" id="body" cols="30" rows="10" placeholder="body">{{ article.body }}</textarea>
|
|
<input type="datetime-local" name="publish_at" id="publish_at" value="{{ article.publish_at }}">
|
|
<input type="checkbox" name="published" value="true"> <input type="hidden" name="published" value="false">
|
|
|
|
<button>submit</button>
|
|
</form>
|
|
|
|
</body>
|
|
</html> |