Sha256: 632065aacd16b931525812f9ef0e9afec9d9ac6180b4f940c36e918099eb1124

Contents?: true

Size: 1.28 KB

Versions: 5

Compression:

Stored size: 1.28 KB

Contents

<% content_for :title, 'Finalize login settings' %>

<div class="hero-unit">
    <h1>A bit more info</h1>
    <h2>and we'll have you on your way in no time.</h2>
</div>

<div class="alert alert-success">
    <a class="close" data-dismiss="alert" href="#">×</a>
    Login check was successful.
</div>

<% if !form %>
        <div class="alert alert-error">
            <a class="close" data-dismiss="alert" href="#">×</a>
            Couldn't find a login form, this can happen for a number of reasons:
            <ul>
                <li>The login form was generated using JavaScript</li>
                <li>The login form was generated using a client-side applet (like Flash)</li>
            </ul>
        </div>
<% else %>
<div class="well">
    <h2>This is the deduced login form:</h2>
    <p>
        <b>
            Found in: <%= html_encode form.url %>
        </b>
        <br/>
        <b>
            Action: <%= html_encode form.action %>
            (method <%= form.method.to_s.upcase %>)
        </b>
    </p>
    <p>
        <ul>
            <% form.inputs.each do |k, v| %>
                <li><%= k.inspect %> = <%= v.inspect %></li>
            <% end %>
        </ul>
    </p>

    <a href="<%= root_url %>verify/login_sequence" class="btn btn-primary">Next &rarr;</a>
</div>
<% end %>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
arachni-1.6.1.3 components/plugins/proxy/panel/verify_login_sequence.html.erb
arachni-1.6.1.2 components/plugins/proxy/panel/verify_login_sequence.html.erb
arachni-1.6.1.1 components/plugins/proxy/panel/verify_login_sequence.html.erb
arachni-1.6.1 components/plugins/proxy/panel/verify_login_sequence.html.erb
arachni-1.6.0 components/plugins/proxy/panel/verify_login_sequence.html.erb