Created
December 13, 2011 11:46
-
-
Save meeDamian/1471843 to your computer and use it in GitHub Desktop.
facebug wysyłaczka chooser
This file contains hidden or 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
<section id="recipient-layer"> | |
<h1>Wybierz adresatów</h1> | |
<section id="facebook-login"> | |
<p>Aby wybrać znajomych z Facebooka musisz się zalogować:</p> | |
<fb:login-button show-faces="true" width="200" max-rows="1"></fb:login-button> | |
</section> | |
<form> | |
<!-- powtórzone tyle razy ile jest ludzików --> | |
<div class="row"> | |
<fieldset class="friend"> | |
<input type="checkbox" id="[fb_id1]"/> | |
<img src="" alt="" class="fb_avatar" /> | |
<span class="fb_name" /> | |
</fieldset> | |
<fieldset class="friend"> | |
<input type="checkbox" id="[fb_id2]"/> | |
<img src="" alt="" class="fb_avatar" /> | |
<span class="fb_name" /> | |
</fieldset> | |
<fieldset class="friend"> | |
<input type="checkbox" id="[fb_id3]"/> | |
<img src="" alt="" class="fb_avatar" /> | |
<span class="fb_name" /> | |
</fieldset> | |
</div> | |
</form> | |
<div id="chosen_ones"> | |
<p>Wybrani znajomi:</p> | |
<ul> | |
<li id="[fb_id1]">Imię i nazwisko</li> | |
<li id="[fb_id2]">Imiona i nazwisko</li> | |
<li id="[fb_id3]">Imię i nazwiska</li> | |
<li id="[fb_id4]">Imiona i nazwiska</li> | |
</ul> | |
</div> | |
</section> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment