corrade-http-templates – Diff between revs 23 and 27

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 23 Rev 27
Line 2... Line 2...
2   2  
3 <html lang="en"> 3 <html lang="en">
4 <head> 4 <head>
Line 5... Line 5...
5 <meta charset="utf-8"> 5 <meta charset="utf-8">
6   6  
-   7 <title>Corrade Group Chat Template</title>
-   8  
-   9 <meta charset="utf-8">
7 <title>Corrade Group Chat</title> 10 <meta http-equiv="X-UA-Compatible" content="IE=edge">
8 11 <meta name="viewport" content="width=device-width, initial-scale=1">
-   12 <meta name="description" content="Group Chat Relay using Corrade">
Line -... Line 13...
-   13 <meta name="author" content="Wizardry and Steamworks">
-   14 <link rel="icon" href="../../favicon.ico">
9 <meta name="description" content="Group Chat Relay using Corrade"> 15  
Line 10... Line 16...
10 <meta name="author" content="Wizardry and Steamworks"> 16 <!-- Bootstrap core CSS -->
11   17 <link href="bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
12 <link rel="stylesheet" href="css/style.css?v=1.1"> 18 <link rel="stylesheet" href="css/style.css?v=1.1">
Line 61... Line 67...
61 }); 67 });
62 </script> 68 </script>
63 </head> 69 </head>
Line 64... Line 70...
64   70  
65 <body> 71 <body>
-   72 <div class="container">
66 <div id="container"> 73 <div class="input-group">
67 <textarea readonly='readonly' id="chat" rows="12"></textarea><br/> 74 <textarea class="form-control" readonly='readonly' id="chat" rows="12"></textarea><br/>
68 <div id="controls"> 75 <div id="controls">
69 Name: <input type="text" size="8" value="Someone" id="name"></input> 76 Name: <input type="text" class="form-control" size="8" value="Someone" id="name"></input>
70 Message: <input type="text" size="35" id="message"></input> 77 Message: <input type="text" class="form-control" size="35" id="message"></input>
-   78 <button type="button" id="send">Send</button>
71 <button type="button" id="send">Send</button> 79 </div>
72 </div> 80 </div>
73 </div> 81 </div>
74 </body> 82 </body>