Skip to content

Instantly share code, notes, and snippets.

View niki4etoo's full-sized avatar
🏠
Working from home

Nikolai Nanev niki4etoo

🏠
Working from home
View GitHub Profile
@rkjha
rkjha / skeleton-form.html
Created May 13, 2015 17:10
A sample form when using skeleton css.
<form id="loginForm" action="/whatever" method="post">
<div class="row">
<div class="seven columns">
<label for="email">Email Address</label>
<input type="text" name="email" id="emailField" placeholder="name@example.com" required/>
<label for="password">Password</label>
<input type="password" name="password" id="passwordField" required/>
<button type="submit" class="button-primary">Sign In</button>