-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (22 loc) · 1.04 KB
/
index.html
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
<!DOCTYPE html>
<html ng-app="conApp">
<head>
<title>Console</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular.min.js"></script>
<script src="jquery-1.12.3.min.js"></script>
<script src="commands.js"></script>
<script src="console.js"></script>
<script src="users.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono:400,300" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body id="bod" ng-controller="conCtrl">
<h1 class="white-text">Console</h1>
<div id="conWrapper">
<div ng-repeat="line in lines">
<h3 class="white-text readout indent">{{ line.txt }}</h3>
</div>
<h3 class="white-text indent">{{ currentUser.name }}> <input id="inputLine" ng-keyup="$event.keyCode == 13 && enter()" type="text" ng-model="currentLine" autofocus></h3>
</div>
</body>
</html>