Software /
code /
prosody-modules
Diff
mod_jsxc/templates/template.html @ 4825:4bdfd83e091f
mod_jsxc: Demo module serving JSXC relatively easily from Prosody
Copy of mod_conversejs adjusted for JSXC.
README TODO
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Wed, 15 Dec 2021 18:28:40 +0100 |
parent | 4823:d3e926bf0c8a |
child | 4826:3a5fbb6c61b3 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mod_jsxc/templates/template.html Wed Dec 15 18:28:40 2021 +0100 @@ -0,0 +1,27 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<meta name="viewport" content="width=device-width, initial-scale=1"> +{header_style# +<link rel="stylesheet" type="text/css" media="screen" href="{item}"/>} +{header_scripts# +<script charset="utf-8" src="{item}"></script>} +<title>{service_name?Prosody IM and JSXC}</title> +{header_tags# +{item!}} +</head> +<body> + <form id="jsxc_login_form"> + <dl> + <dt><label for="jsxc_username">Username</label></dt> + <dd><input id="jsxc_username" name="username" placeholder="Alice"/></dd> + <dt><label for="jsxc_password">Password</label></dt> + <dd><input id="jsxc_password" name="password" type="password"/></dd> + </dl> + <button type="submit">Login</button> + </form> + +<script>{jsxcjs.startup.script!}</script> +</body> +</html>