-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathold.html
40 lines (38 loc) · 1.31 KB
/
old.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<title>Crazy Login</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Latest compiled and minified CSS -->
</head>
<style>
.paytm {
border-color: #2C0766;
border-width: 0 0 1.4px;
border-style:solid;
box-shadow: 0 0px 0px white inset, 0 0 0px white;
height: 60px;
}
.paytm:focus {
outline: 0 none;
border-color: #2C0766;
border-width: 0 0 2.4px;
box-shadow: 0 0px 0px white inset, 0 0 0px white;
}
</style>
<!--<script src="build/login.js"></script>-->
<!-- <link rel="icon" type="image/png" href="images/favicon.png"> -->
<script src="node_modules/socket.io/node_modules/socket.io-client/socket.io.js"></script>
<script>
var socketio = /*io.connect("nodechatkiran.herokuapp.com");*/io.connect("localhost:3000");
</script>
<script src="js/lib/angular-1.4.8.js"></script>
<script src="js/lib/angular-ui-router.js"></script>
<script src="js/controller/loginController.js"></script>
<body ng-app="myApp">
<div ui-view class="container col-sm-8">
</div>
</body>
</html>