-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
index.html + package.json with some simple information
- Loading branch information
Emil Johansson
authored and
Emil Johansson
committed
Jul 14, 2012
1 parent
091bb5f
commit 0e64ee6
Showing
2 changed files
with
135 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
<!DOCTYPE html> | ||
<html xmlns="http://www.w3.org/1999/xhtml"> | ||
<head> | ||
|
||
<title>Kaffedags</title> | ||
|
||
<!-- META DATA --> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | ||
<meta name="author" content="Emil Johansson, Henrik Andersen" /> | ||
<meta name="copyright" content="Emil Johansson, Henrik Andersen, Karl Rosqvist" /> | ||
<meta name="keywords" content="" /> | ||
<meta name="description" content="" /> | ||
|
||
<!-- ICON --> | ||
<link rel="icon" href="src/img/icon-fav.png" type="image/png"> | ||
|
||
<!-- CSS --> | ||
<link href="src/css/style.css" rel="stylesheet" type="text/css" /> | ||
|
||
<!-- JAVASCRIPT --> | ||
<script type="text/javascript" src="src/js/jquery.js"></script> | ||
<script type="text/javascript" src="src/js/se/emiljohansson/core.js"></script> | ||
<script type="text/javascript" src="src/js/core.js"></script> | ||
<script type="text/javascript" src="src/js/properties.js"></script> | ||
<script type="text/javascript" src="src/js/login.js"></script> | ||
|
||
</head> | ||
|
||
<body> | ||
|
||
<div id="page-wrapper"> | ||
|
||
<div id="page-header-wrapper"> | ||
|
||
<div id="page-header-meta-wrapper" class="hide"> | ||
|
||
<h1>Fika</h1> | ||
<p>A web application for organizing important social events in the form of coffee breaks.</p> | ||
|
||
</div> | ||
|
||
<div id="page-header-login-wrapper"> | ||
|
||
<div id="page-header-login-box-wrapper"> | ||
|
||
<form action="/" id="page-header-login-box-form"> | ||
|
||
<input id="page-header-login-box-form-username" type="text" name="username" placeholder="Username" /> | ||
|
||
<input id="page-header-login-box-form-password" type="password" name="password" placeholder="Password" /> | ||
|
||
</form> | ||
|
||
<div id="page-header-login-box-wrapper-code"></div> | ||
|
||
</div> | ||
|
||
<div id="page-header-login-download"> | ||
|
||
<a href="./client/Fika.dmg"></a> | ||
<p>Desktop client (OSX)</p> | ||
|
||
</div> | ||
|
||
</div> | ||
|
||
<div id="page-header-logout-wrapper"> | ||
|
||
<a href="#" title="Log out">Log out</a> | ||
|
||
</div> | ||
|
||
</div> | ||
|
||
<div id="page-content-wrapper"> | ||
|
||
<div id="page-content-countdown-wrapper" class="hide"> | ||
|
||
<div id="page-content-countdown-wrapper-min"></div> | ||
<div id="page-content-countdown-wrapper-sec"></div> | ||
</div> | ||
|
||
<div id="page-content-coffe-wrapper"> | ||
|
||
<div id="page-content-coffe-cup-wrapper"> | ||
|
||
<div id="page-content-coffe-cup-enable-wrapper"></div> | ||
<div id="page-content-coffe-cup-disable-wrapper"></div> | ||
|
||
</div> | ||
|
||
<div id="page-content-coffe-participant-wrapper"> | ||
|
||
<ul></ul> | ||
|
||
</div> | ||
|
||
</div> | ||
|
||
</div> | ||
|
||
<div id="page-footer-wrapper"> | ||
|
||
<p>© Copyright 2011 Linnaeus University, Media Technology. </p> | ||
|
||
</div> | ||
|
||
<div id="page-hidden-data"></div> | ||
</div> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"name": "Fika" | ||
, "description": "This is a very simplistic app that enables you and your co-workers to arrange Fika meetings." | ||
, "version": "1.0.1" | ||
, "keywords": ["fika", "html", "css", "javascript", "coffee"] | ||
, "homepage": "https://github.com/emiljohansson/Fika" | ||
, "author": "Emil Johansson, Henrik Andersen" | ||
, "scripts": {} | ||
, "repository": { | ||
"type": "git" | ||
, "url": "" | ||
} | ||
, "licenses": [ | ||
{ | ||
"type": "" | ||
, "url": "" | ||
} | ||
] | ||
, "devDependencies": { | ||
"jquery": "1.7.1" | ||
, "emiljohansson": "0.0.5" | ||
} | ||
} |