Skip to content

Instantly share code, notes, and snippets.

/ruby.rb Secret

Created August 5, 2016 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/f46e8a0ed433fdb16371587920ee4b64 to your computer and use it in GitHub Desktop.
Save anonymous/f46e8a0ed433fdb16371587920ee4b64 to your computer and use it in GitHub Desktop.
<form id="login-form" class="form-horizontal" role="form" method="post" onsubmit="return validateLoginForm()" novalidate="novalidate" action="/Membersite/login.html">
<input type="hidden" name="redirect" value="" />
<input id="token" name="token" type="hidden" value="" />
<div class="form-group">
<label class="col-sm-6 col-md-5 col-lg-4 control-label">Email Address</label>
<div class="col-sm-6 col-md-7 col-lg-8">
<input type="email" name="username" id="username" class="form-control login-email" />
</div>
</div>
<div class="form-group">
<label class="col-sm-6 col-md-5 col-lg-4 control-label">Password</label>
<div class="col-sm-6 col-md-7 col-lg-8">
<input type="password" name="password" id="password" class="form-control" />
</div>
</div>
<div class="form-group">
<div class="col-xs-5 col-md-4 col-md-push-1 col-lg-push-4">
<button type="submit" class="btn btn-primary btn-block">Sign In</button>
</div>
<div class="col-xs-7 col-lg-4 col-md-push-1 col-lg-push-4">
<a href="#" class="text-muted" id="forgot-pass-link"><u>Forgot Password?</u></a>
</div>
</div>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment