diff options
Diffstat (limited to 'sca-cpp/trunk/modules/http')
-rw-r--r-- | sca-cpp/trunk/modules/http/htdocs/index.html | 13 | ||||
-rw-r--r-- | sca-cpp/trunk/modules/http/htdocs/login/index.html | 12 | ||||
-rw-r--r-- | sca-cpp/trunk/modules/http/htdocs/logout/index.html | 14 |
3 files changed, 35 insertions, 4 deletions
diff --git a/sca-cpp/trunk/modules/http/htdocs/index.html b/sca-cpp/trunk/modules/http/htdocs/index.html index 1bfb3e30c2..da71ab20fa 100644 --- a/sca-cpp/trunk/modules/http/htdocs/index.html +++ b/sca-cpp/trunk/modules/http/htdocs/index.html @@ -17,5 +17,16 @@ under the License. --> -<html><body><h1>It works!</h1></body></html> +<html> +<head> +<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0"/> +<meta name="apple-mobile-web-app-capable" content="yes"/> +<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/> +<link rel="stylesheet" type="text/css" href="/ui.css"/> +<title>It works</title> +</head> +<body> +<h1>It works!</h1> +</body> +</html> diff --git a/sca-cpp/trunk/modules/http/htdocs/login/index.html b/sca-cpp/trunk/modules/http/htdocs/login/index.html index 3f312e4ca4..f4bdcd7f42 100644 --- a/sca-cpp/trunk/modules/http/htdocs/login/index.html +++ b/sca-cpp/trunk/modules/http/htdocs/login/index.html @@ -17,7 +17,17 @@ under the License. --> -<html><body><h1>Sign in</h1> +<html> +<head> +<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0"/> +<meta name="apple-mobile-web-app-capable" content="yes"/> +<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/> +<link rel="stylesheet" type="text/css" href="/ui.css"/> +<title>Sign in</title> +</head> +<body> +<h1>Sign in</h1> +<br/> <script type="text/javascript"> function submitFormSignin() { diff --git a/sca-cpp/trunk/modules/http/htdocs/logout/index.html b/sca-cpp/trunk/modules/http/htdocs/logout/index.html index 02a92d1b31..bdff9a441e 100644 --- a/sca-cpp/trunk/modules/http/htdocs/logout/index.html +++ b/sca-cpp/trunk/modules/http/htdocs/logout/index.html @@ -17,8 +17,17 @@ under the License. --> -<html><body> +<html> +<body> +<head> +<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0"/> +<meta name="apple-mobile-web-app-capable" content="yes"/> +<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/> +<link rel="stylesheet" type="text/css" href="/ui.css"/> +<title>Sign out</title> +</head> <h1>Sign out</h1> +<br/> <form name="signout" action="/login" method="GET"> <script type="text/javascript"> @@ -30,4 +39,5 @@ function submitSignout() { </script> <input type="button" onclick="submitSignout()" value="Sign out"/> </form> -</body></html> +</body> +</html> |