summaryrefslogtreecommitdiff
path: root/views/message_send.ejs
blob: 6f72d747c592bd8544980aa492b981158a36031c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<%- include('header', { title: "Send Message" }) %>
<style>
input, textarea { width: 100%; max-width: 45em; }
</style>
<form action="/message/send" method="post">
<p>
To:<br>
<input id="to" type="text" name="to" size="80" maxlength="80"
	onkeypress="if(event.keyCode===13){document.querySelector('#subject').focus();return false;}"
	value="<%= to_name %>"
	<%= to_id === 0 ? "autofocus" : "" %>
	required>

<p>
Subject:
<br>
<input id="subject" type="text" name="subject" size="80" maxlength="80"
	onkeypress="if(event.keyCode===13){document.querySelector('#body').focus();return false;}"
	value="<%= subject %>"
	<%= to_id > 0 ? "autofocus" : "" %>
	pattern=".*\S+.*"
	required>

<p>
Body:
<br>
<textarea id="body" name="body" rows="20" cols="80" maxlength="32000" required><%= body %></textarea>
<p>
<button type="submit">Send</button>
</form>