diff options
| author | Evan Chiu | 2014-10-30 22:52:30 -0400 |
|---|---|---|
| committer | Evan Chiu | 2014-10-30 22:52:30 -0400 |
| commit | 496b780ee2f9af613e3f3b92f86c369d654a6b48 (patch) | |
| tree | 070be919697dc2848b62770c2e5797c56ca50523 /public/partials | |
| parent | 60de545f54eda6c9ce20d78030940bfaa1a34c40 (diff) | |
| download | sipping-point-496b780ee2f9af613e3f3b92f86c369d654a6b48.tar.bz2 | |
Adding style, friends
Diffstat (limited to 'public/partials')
| -rw-r--r-- | public/partials/event.html | 0 | ||||
| -rw-r--r-- | public/partials/home.html | 5 | ||||
| -rw-r--r-- | public/partials/login.html | 15 | ||||
| -rw-r--r-- | public/partials/new.html | 20 |
4 files changed, 40 insertions, 0 deletions
diff --git a/public/partials/event.html b/public/partials/event.html new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/public/partials/event.html diff --git a/public/partials/home.html b/public/partials/home.html new file mode 100644 index 0000000..3646371 --- /dev/null +++ b/public/partials/home.html @@ -0,0 +1,5 @@ +<h1>{{title}}</h1> +<h2>Events</h2> + +<h2>New</h2> +<input type="button" onclick="newEvent()" value="+Event"></input> diff --git a/public/partials/login.html b/public/partials/login.html new file mode 100644 index 0000000..f3dd614 --- /dev/null +++ b/public/partials/login.html @@ -0,0 +1,15 @@ +<h1>{{title}}</h1> + +<!-- + Below we include the Login Button social plugin. This button uses + the JavaScript SDK to present a graphical Login button that triggers + the FB.login() function when clicked. +--> + +<fb:login-button scope="public_profile,email,user_friends" onlogin="checkLoginState();"> +</fb:login-button> + +<input type="button" onclick="logout()" value="logout"></input> + +<div id="status"> +</div> diff --git a/public/partials/new.html b/public/partials/new.html new file mode 100644 index 0000000..08793d8 --- /dev/null +++ b/public/partials/new.html @@ -0,0 +1,20 @@ +<h1>New Event</h1> +<h2>Details</h2> +<form> + <div class="input-group"> + <span class="input-group-addon">Date</span> + <input type="text" class="form-control" placeholder=""> + </div> + <div class="input-group"> + <span class="input-group-addon">Time</span> + <input type="text" class="form-control" placeholder=""> + </div> + <div class="input-group"> + <span class="input-group-addon">Location</span> + <input type="text" class="form-control" placeholder=""> + </div> +</form> +<h2>Invitees</h2> +<ul> + <li ng-repeat="friend in friends">{{friend.name}}</li> +</ul> |
