11 lines
303 B
Bash
11 lines
303 B
Bash
|
cat <<EOF
|
||
|
<form action="/posts/blogin" method="GET">
|
||
|
<input type="hidden" name="action" value="submit" />
|
||
|
<input type="hidden" name="token" value="$(escape <<< "$1")" />
|
||
|
<input type="text" maxlength="200" name="status" required />
|
||
|
<br />
|
||
|
<input type="submit" value="update blatus" />
|
||
|
</form>
|
||
|
EOF
|
||
|
|