Reimporting GIT repository
This commit is contained in:
commit
57f6a03c34
37 changed files with 9949 additions and 0 deletions
BIN
initializr/apple-touch-icon-144x144-precomposed.png
Executable file
BIN
initializr/apple-touch-icon-144x144-precomposed.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
BIN
initializr/apple-touch-icon-57x57-precomposed.png
Executable file
BIN
initializr/apple-touch-icon-57x57-precomposed.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 730 B |
BIN
initializr/favicon.ico
Executable file
BIN
initializr/favicon.ico
Executable file
Binary file not shown.
After Width: | Height: | Size: 766 B |
15
initializr/humans.txt
Executable file
15
initializr/humans.txt
Executable file
|
@ -0,0 +1,15 @@
|
|||
# humanstxt.org/
|
||||
# The humans responsible & technology colophon
|
||||
|
||||
# TEAM
|
||||
|
||||
<name> -- <role> -- <twitter>
|
||||
|
||||
# THANKS
|
||||
|
||||
<name>
|
||||
|
||||
# TECHNOLOGY COLOPHON
|
||||
|
||||
HTML5, CSS3
|
||||
jQuery, Modernizr
|
89
initializr/index.html
Executable file
89
initializr/index.html
Executable file
|
@ -0,0 +1,89 @@
|
|||
<!DOCTYPE html>
|
||||
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
|
||||
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
|
||||
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
|
||||
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<title>TradeChat</title>
|
||||
<meta name="description" content="TradeChat - the quick and dirty chat with file transfer">
|
||||
<meta name="author" content="Carlos Andrés Solís R." />
|
||||
<meta name="viewport" content="width=device-width">
|
||||
|
||||
<link rel="stylesheet" href="css/bootstrap.min.css">
|
||||
<style>
|
||||
body {
|
||||
padding-top: 50px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
.control-label, .help-inline {
|
||||
display: none;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
|
||||
<link rel="stylesheet" href="css/main.css">
|
||||
|
||||
<script src="js/vendor/modernizr-2.6.2-respond-1.1.0.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<!--[if lt IE 7]>
|
||||
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
|
||||
<![endif]-->
|
||||
|
||||
<div class="navbar navbar-inverse navbar-fixed-top">
|
||||
<div class="container">
|
||||
<div class="navbar-header">
|
||||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="#">TradeChat</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Main jumbotron for a primary marketing message or call to action -->
|
||||
<div class="jumbotron">
|
||||
<div class="container">
|
||||
<h1>TradeChat</h1>
|
||||
<p>The quick and dirty chat with file transfer.</p>
|
||||
<p>Just enter your desired username and get started!</p>
|
||||
</div>
|
||||
<div class="container">
|
||||
<form class="form-vertical form-inline" enctype="multipart/form-data" name="login" action="loginProcess.php" method="post">
|
||||
<div class="controls">
|
||||
<input name="user" class="form-control span6" placeholder="Username">
|
||||
<button type="button" name="loginButton" class="btn btn-success">Log in</button>
|
||||
<span class="help-inline">This user name is already in use.</span>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
|
||||
<footer>
|
||||
<p>© Carlos Solís - AZK.Ware 2013</p>
|
||||
<p>Licensed under AGPL v3 or higher</p>
|
||||
<p>Some components under compatible licenses; see COPYING for details</p>
|
||||
</footer>
|
||||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
|
||||
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.10.1.min.js"><\/script>')</script>
|
||||
|
||||
<script src="js/vendor/bootstrap.min.js"></script>
|
||||
|
||||
<script src="js/plugins.js"></script>
|
||||
<script src="js/main.js"></script>
|
||||
|
||||
<script>
|
||||
var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
|
||||
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
|
||||
g.src='//www.google-analytics.com/ga.js';
|
||||
s.parentNode.insertBefore(g,s)}(document,'script'));
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue