summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2016-06-16 12:48:49 +0200
committerPatrick Simianer <p@simianer.de>2016-06-16 12:48:49 +0200
commite534f15ba401c6390adce293e49ecb6b15604136 (patch)
tree50bd2e051e4cd969957e1b1ce3e93aec92be1436 /index.php
parent2305d1505c6e441301b298cecf81b4a98b495ffb (diff)
fix
Diffstat (limited to 'index.php')
-rw-r--r--index.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/index.php b/index.php
index 4b7e13c..b2a810f 100644
--- a/index.php
+++ b/index.php
@@ -5,7 +5,9 @@
<script src="js/jquery.min.js" charset="utf-8"></script>
<script type="text/javascript">
var check_submit = function () {
- if ($("#name").val()=="" || $("#key").val()=="") {
+ var name = $("#name").val().trim();
+ $("#name").val(name);
+ if (name=="" || $("#key").val()=="" || !$("#key").val().match(/^[a-f0-9]{1,4}$/)) {
alert("Please enter a session key and a name.")
return;
}
@@ -22,12 +24,12 @@
<form method="get" name="sess" action="interface.php">
<strong>Session key:</strong>
<input type="text" id="key" name="key" style="width:8em" />
- &nbsp;&nbsp;&nbsp;&nbsp;<strong>Name:</strong>
+ &nbsp;&nbsp;&nbsp;&nbsp;<strong>E-Mail:</strong>
<input type="txt" id="name" name="name" style="width:12em" />
&nbsp;&nbsp;&nbsp;&nbsp;<strong>Session type:</strong>
<select name="ui_type">
<option value="t">text</option>
- <option value="g">graphical</option>
+ <!--<option value="g">graphical</option>-->
</select>
&nbsp;&nbsp;&nbsp;
<input type="button" value="Submit" onclick="check_submit()" />