aboutsummaryrefslogtreecommitdiff
path: root/default_terms.c
diff options
context:
space:
mode:
Diffstat (limited to 'default_terms.c')
-rw-r--r--default_terms.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/default_terms.c b/default_terms.c
new file mode 100644
index 0000000..f532cc9
--- /dev/null
+++ b/default_terms.c
@@ -0,0 +1,13 @@
+#include "default.h"
+#include <stddef.h>
+
+const char default_terms[] =
+ "Please enter your terms of service.\n"
+ "They can be modified from the TERMS file inside the prefix directory.\n"
+ "For example, a bullet list:\n"
+ "- Be nice to others.\n"
+ "- Do not upload illegal or harmful content.\n"
+ "A token can be generated by the administrator with tokengen(1).\n"
+ ;
+
+const size_t default_terms_len = sizeof default_terms - 1;