aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-03-15 15:46:37 +0000
committerChristian Grothoff <christian@grothoff.org>2012-03-15 15:46:37 +0000
commit61f8dbfee6b5a82c701b717dc33b7f7f7f379350 (patch)
treee9069846e042ef27866aa6176590396cb0d83b7f /src
parent0aba0164ccdc1f0ad66e3f0bfcb2f726ab2c536d (diff)
downloadgnunet-61f8dbfee6b5a82c701b717dc33b7f7f7f379350.tar.gz
gnunet-61f8dbfee6b5a82c701b717dc33b7f7f7f379350.zip
-clean up HTML
Diffstat (limited to 'src')
-rw-r--r--src/gns/gnunet-gns-fcfsd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gns/gnunet-gns-fcfsd.c b/src/gns/gnunet-gns-fcfsd.c
index ffc2473e3..436191a78 100644
--- a/src/gns/gnunet-gns-fcfsd.c
+++ b/src/gns/gnunet-gns-fcfsd.c
@@ -37,17 +37,17 @@
37/** 37/**
38 * Invalid method page. 38 * Invalid method page.
39 */ 39 */
40#define METHOD_ERROR "<html><head><title>Illegal request</title></head><body>Go away.</body></html>" 40#define METHOD_ERROR "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html lang=\"en\" xmlns=\"http://www.w3.org/1999/xhtml\"><html><head><title>Illegal request</title></head><body>Go away.</body></html>"
41 41
42/** 42/**
43 * Front page. (/) 43 * Front page. (/)
44 */ 44 */
45#define MAIN_PAGE "<html><head><title>Welcome</title></head><body><form action=\"/S\" method=\"post\">What is your desired domain name? <input type=\"text\" name=\"domain\" /> <p> What is your public key? <input type=\"text\" name=\"pkey\" /> <input type=\"submit\" value=\"Next\" /></body></html>" 45#define MAIN_PAGE "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html lang=\"en\" xmlns=\"http://www.w3.org/1999/xhtml\"><html><head><title>GNUnet FCFS Authority Name Registration Service</title></head><body><form action=\"/S\" method=\"post\">What is your desired domain name? <input type=\"text\" name=\"domain\" /> <p> What is your public key? <input type=\"text\" name=\"pkey\" /> <input type=\"submit\" value=\"Next\" /></body></html>"
46 46
47/** 47/**
48 * Second page (/S) 48 * Second page (/S)
49 */ 49 */
50#define SUBMIT_PAGE "<html><head><title>%s</title></head><body>%s</body></html>" 50#define SUBMIT_PAGE "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html lang=\"en\" xmlns=\"http://www.w3.org/1999/xhtml\"><html><head><title>%s</title></head><body>%s</body></html>"
51 51
52/** 52/**
53 * Mime type for HTML pages. 53 * Mime type for HTML pages.