JSFiddle - React, Tailwind, and code Playground

by Lalji Tadhani

HTML

<script src="https://code.jquery.com/jquery-3.4.1.slim.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.css">
<div id="Splash" class="container hideable " style=" max-width:600px; padding:50px; background-color:#ffffff; height:100%; margin-top:200px ">
        <div class="row">
            <div class="col-lg-12" style="margin-bottom:25px">
                <input type="text" placeholder="Email" class="form-control" id="loginUsername">
            </div>
        </div>

        <div class="row">
            <div class="col-lg-12" style="margin-bottom:25px">
                <input type="password" placeholder="Password" class="form-control" id="loginPassword">
            </div>
        </div>

        <div class="row">
            <div class="col-lg-12" style="margin-bottom:25px">
                <button class="btn" onclick="login()" style="background-color:#000; color:white; width:100%; height:40px" type="button" id="button-addon1">Login</button>
            </div>
        </div>

        <div class="row">
            <div class="col-lg-12" style="margin-bottom:25px">
                <button class="btn" onclick="showSignUpModal()" style="background-color:#9B0B2F; color:white; width:100%; height:40px" type="button" id="splashSignUpButton">Sign Up</button>
            </div>
        </div>

        <div class="row">
            <div class="col-lg-12" align="center">
                <div > <a  id="resetPasswordTrigger" href="#"onclick="showForgotPasswordModal()" >Forgot Password ?</a></div>
            </div>
        </div>

        <div id="signUpModal" class="modal" >
            <!-- Modal content -->
            <div...

CSS

.row {
  background: #f8f9fa;
  margin-top: 20px;
}

.col {
  border: solid 1px #6c757d;
  padding: 10px;
}