Skip to content

Commit 1023388

Browse files
committed
Initial signin page
0 parents  commit 1023388

19 files changed

+7355
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

css/.DS_Store

6 KB
Binary file not shown.
Binary file not shown.

css/bootstrap-responsive.css

+1,109
Large diffs are not rendered by default.

css/bootstrap.css

+6,167
Large diffs are not rendered by default.

css/scss:style.css

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/*
2+
Errno::ENOENT: No such file or directory - style
3+
4+
Backtrace:
5+
/Users/GauravSharma/.rvm/gems/ruby-2.0.0-p0/gems/sass-3.2.9/lib/sass/plugin/compiler.rb:360:in `read'
6+
/Users/GauravSharma/.rvm/gems/ruby-2.0.0-p0/gems/sass-3.2.9/lib/sass/plugin/compiler.rb:360:in `update_stylesheet'
7+
/Users/GauravSharma/.rvm/gems/ruby-2.0.0-p0/gems/sass-3.2.9/lib/sass/plugin/compiler.rb:203:in `block in update_stylesheets'
8+
/Users/GauravSharma/.rvm/gems/ruby-2.0.0-p0/gems/sass-3.2.9/lib/sass/plugin/compiler.rb:201:in `each'
9+
/Users/GauravSharma/.rvm/gems/ruby-2.0.0-p0/gems/sass-3.2.9/lib/sass/plugin/compiler.rb:201:in `update_stylesheets'
10+
/Users/GauravSharma/.rvm/gems/ruby-2.0.0-p0/gems/sass-3.2.9/lib/sass/plugin/compiler.rb:283:in `block in watch'
11+
/Users/GauravSharma/.rvm/gems/ruby-2.0.0-p0/gems/sass-3.2.9/vendor/listen/lib/listen/multi_listener.rb:108:in `call'
12+
/Users/GauravSharma/.rvm/gems/ruby-2.0.0-p0/gems/sass-3.2.9/vendor/listen/lib/listen/multi_listener.rb:108:in `on_change'
13+
/Users/GauravSharma/.rvm/gems/ruby-2.0.0-p0/gems/sass-3.2.9/vendor/listen/lib/listen/multi_listener.rb:117:in `block in initialize_adapter'
14+
/Users/GauravSharma/.rvm/gems/ruby-2.0.0-p0/gems/sass-3.2.9/vendor/listen/lib/listen/adapters/polling.rb:56:in `call'
15+
/Users/GauravSharma/.rvm/gems/ruby-2.0.0-p0/gems/sass-3.2.9/vendor/listen/lib/listen/adapters/polling.rb:56:in `poll'
16+
/Users/GauravSharma/.rvm/gems/ruby-2.0.0-p0/gems/sass-3.2.9/vendor/listen/lib/listen/adapters/polling.rb:32:in `block in start'
17+
*/
18+
body:before {
19+
white-space: pre;
20+
font-family: monospace;
21+
content: "Errno::ENOENT: No such file or directory - style"; }

css/style.css

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.login_container {
2+
padding: 10px 0px; }

css/style.scss

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.login_container {
2+
padding: 10px 0px;
3+
}

img/architectureplans.jpg

4.3 MB
Loading

img/cpcl_logo.png

39.2 KB
Loading

img/cpcl_logo.psd

147 KB
Binary file not shown.

img/glyphicons-halflings-white.png

8.57 KB
Loading

img/glyphicons-halflings.png

12.5 KB
Loading

img/sample_logo.jpeg

7.92 KB
Loading

js/bootstrap.min.js

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/jquery.min.js

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

login.html

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Login</title>
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<!-- Bootstrap -->
7+
<link href="css/bootstrap.css" rel="stylesheet" media="screen">
8+
<link href="css/bootstrap-responsive.css" rel="stylesheet" media="screen">
9+
<link href="css/style.css" rel="stylesheet" media="screen">
10+
</head>
11+
<body>
12+
<div class="navbar navbar-inverse navbar-fixed-top"></div>
13+
<div class="navbar-inner">
14+
<div class="container">
15+
<a class="brand"><img data-source="holder.js/260x120" src="img/cpcl_logo.png" alt="Company Image" style="width: 260px;height: 120px;" /> </a>
16+
<div class="visible-desktop pull-right">
17+
<img data-source="holder.js/260x120" src="img/sample_logo.jpeg" alt="Default Image" style="width: 260px;height: 120px;" />
18+
</div>
19+
</div>
20+
</div>
21+
<div class="container-fluid">
22+
<div class="row-fluid">
23+
<div class="span8 visible-desktop visible-tablet"><img src="img/architectureplans.jpg" alt="" /> </div>
24+
<div class="span4">
25+
<form method="post" action="">
26+
<div class="login_container">
27+
<input type="text" name="userName" id="userName" placeholder="Email"/>
28+
<input type="password" name="password" id="password" placeholder="Password"/>
29+
<div class="clear"></div>
30+
<button type="submit" class="btn">Sign In</button>
31+
</div>
32+
</form>
33+
34+
</div>
35+
36+
</div>
37+
</div>
38+
<script src="js/jquery.min.js"></script>
39+
<script src="js/bootstrap.min.js"></script>
40+
</body>
41+
</html>

static.esproj/Project.espressostorage

158 Bytes
Binary file not shown.

static.esproj/user.GauravSharma.espressostorage

Whitespace-only changes.

0 commit comments

Comments
 (0)