@extends('layouts.master') @section('title') Password Generator @stop @section('head') @stop @section('content')

xkcd-Style Password Generator v2.0


Go Back

Random Password:
{!!implode($sep, $pwdArray)!!}
{!! Form::open(['url' => 'pwdgen', 'class' => "pure-form pure-form-aligned " ]) !!}
{!! Form::label('numWords', '# of Words (4-9)') !!} {!! Form::selectRange('numWords', 4, 9) !!}
{!! Form::label('Separator', 'Seperator (default: -)') !!} {!! Form::text('Separator', '-', array('class'=>'pure-input')) !!}
{!! Form::label('Symbol', 'Add a Symbol?') !!} {!! Form::checkbox('Symbol', 1) !!}
{!! Form::label('Number', 'Add a Number?') !!} {!! Form::checkbox('Number', 1) !!}
{!! Form::label('Capital', 'Capitalize?') !!} {!! Form::checkbox('Capital', 1) !!}
{!! Form::submit('Generate Password', ['class' => 'pure-button pure-button-primary']) !!}
{!! Form::close() !!} Chandra
@stop @section('body') @stop