JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://fancyapps.com/fancybox/source/jquery.fancybox.js"></script>
<link rel="stylesheet" href="http://fancyapps.com/fancybox/source/jquery.fancybox.css">
<a class="fancybox" href="#todd">Login Form</a>
<br />
<div id="todd" style="display:none">
<label>Username</label>
<input type="text" name="user_name" />
<br/>
<label>Password</label>
<input type="text" name="password" />
<a href="#inline_form1" class="fancybox" title="Forgot Your Password?">Reset Link</a>
<br/>
</div>
<div id="inline_form1" style="display:none; width: 350px; text-align: center">
<p>Reset Your Password</p> <br/>
<p>Please enter your email address and we'll email you a link where you can
reset it securely
<br /> <br />
<input type="email" name="email" />
</p>
</div>
CSS
body {font-size: 9pt;}
JavaScript
$(function () {
$(".fancybox").fancybox({
title: ''
});
$(".fancybox").eq(0).trigger('hover');
});
$(function() {
$( document ).tooltip();
});