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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/// The HTML id for the name input element.
pub const KEEP_ALIVE_NAME_ID: &str = "keep-alive-name";
/// The HTML id for the email input element.
pub const KEEP_ALIVE_EMAIL_ID: &str = "keep-alive-email";
/// The HTML id for the message textarea element.
pub const KEEP_ALIVE_MESSAGE_ID: &str = "keep-alive-message";
/// The HTML name attribute for the name input element.
pub const KEEP_ALIVE_NAME_NAME: &str = "name";
/// The HTML name attribute for the email input element.
pub const KEEP_ALIVE_EMAIL_NAME: &str = "email";
/// The HTML name attribute for the message textarea element.
pub const KEEP_ALIVE_MESSAGE_NAME: &str = "message";
/// The HTML input type for text.
pub const KEEP_ALIVE_TEXT_TYPE: &str = "text";
/// The HTML input type for email.
pub const KEEP_ALIVE_EMAIL_TYPE: &str = "email";
/// The HTML autocomplete attribute value for name.
pub const KEEP_ALIVE_AUTOCOMPLETE_NAME: &str = "name";
/// The HTML autocomplete attribute value for email.
pub const KEEP_ALIVE_AUTOCOMPLETE_EMAIL: &str = "email";
/// The HTML autocomplete attribute value for off.
pub const KEEP_ALIVE_AUTOCOMPLETE_OFF: &str = "off";
/// The HTML placeholder for the name input element.
pub const KEEP_ALIVE_NAME_PLACEHOLDER: &str = "Enter your name...";
/// The HTML placeholder for the email input element.
pub const KEEP_ALIVE_EMAIL_PLACEHOLDER: &str = "Enter your email...";
/// The HTML placeholder for the message textarea element.
pub const KEEP_ALIVE_MESSAGE_PLACEHOLDER: &str = "Write a message...";
/// The HTML rows attribute for the message textarea element.
pub const KEEP_ALIVE_MESSAGE_ROWS: &str = "3";