-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.cshtml
37 lines (32 loc) · 1.25 KB
/
index.cshtml
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
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<!--Meta section-->
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
<meta name="description" content="Code with another person in real-time code editor.">
<meta name="author" content="Jan Radlowski">
<title>Code Together - Real Time Code Editor</title>
<!--Reference css-->
<link href="https://fonts.googleapis.com/css?family=Poppins" rel="stylesheet">
<link rel="stylesheet" href="~/css/index.css" />
<!--Reference jquery library-->
<script src="~/Scripts/jquery-2.2.1.min.js"></script>
</head>
<body>
<header>
<img src="~/img/header.png" alt="Header" />
</header>
<div id="pageContent">
<form id="roomForm" method="get" action="~/room">
<input id="txtJoin" type="text" name="chatroom" placeholder="Room ID" autocomplete="off" required />
<input id="btnJoin" class="roomBtns" type="button" value="Join Room" />
<input id="btnCreate" class="roomBtns" type="submit" value="Create New Room" />
</form>
</div>
<script type="text/javascript" src="~/Scripts/index.js"></script>
</body>
</html>