Modal for beta invite

Author:

Maximilian

Snipp created on:

2012-10-02 09:36:16

Description:

This is a popup modal for something like a beta signup, the user is presented with company logo and two text fields - one for the user's name and another one for email.
Could also be used as popup login form with small changes.

Snipp preview:


Join the Beta

Snipp HTML code:

Like Bootsnipp? Please give a tip:

<a class="btn btn-primary btn-large" data-toggle="modal" href="#betaModal">Join the Beta</a> 
<div id="betaModal" class="modal hide fade">
    <div class="modal-header">
            <button class="close" data-dismiss="modal">×</button>
            <h3>Join the Beta</h3>
    </div>
<div class="modal-body">
    <div class="row-fluid">
        <div class="span12">
            <div class="span6">
            <div class="logowrapper">
                <img class="logoicon" src="http://placehold.it/300x300/bbb/&text=Your%20Logo" alt="App Logo"/>
            </div>
            </div>
            <div class="span6">
                <form class="form-horizontal">
                    <p class="help-block">Name</p>
                    <div class="input-prepend">
                        <span class="add-on">*</span><input class="prependedInput" size="16" type="text">
                    </div>
                    <p class="help-block">Email</p>
                    <div class="input-prepend">
                        <span class="add-on">@</span><input class="prependedInput" size="16" type="email">
                    </div>
                  	<hr>
                    <div class="help-block">
                        <button type="submit" class="btn btn-large btn-info">Request an Invite</button>
                    </div>
                </form>
            </div>
        </div>
    </div>
</div>
    <div class="modal-footer">
        <p><i>Lastest Update on October 2nd, 2012</i></p>
    </div>
</div>

Share this snipp:


Comments? :

comments powered by Disqus