-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjoin.html
More file actions
28 lines (27 loc) · 830 Bytes
/
join.html
File metadata and controls
28 lines (27 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>quickChat - Join</title>
</head>
<body>
<div class="box">
<form action="">
<input id="typeBox" type="text" placeholder="Type here...">
<input id="submitButton" type="submit" style="height: 6%;" value="Send">
<p id="time"></p>
<p>hi</p>
</form>
</div>
<script>
var today = new Date();
var date = today.getFullYear()+'-'+(today.getMonth()+1)+'-'+today.getDate();
var time = today.getHours() + ":" + today.getMinutes() + ":" + today.getSeconds();
var dateTime = date+' '+time;
document.getElementById("time").innerHTML = dateTime;
</script>
</body>
</html>