div.row(style='margin-top:100px')
	div.col-md-4.col-md-offset-4
		div.panel.panel-primary
			div.panel-heading
				h5 Create Account
			div.panel-body
				div.form-group
					label First
					input.form-control(type='text',placeholder='First Name',v-model='first')
				div.form-group
					label Last
					input.form-control(type='text',placeholder='Last Name',v-model='last')
				div.form-group
					label Email
					input.form-control(type='email',placeholder='Email',v-model='email')
				div.form-group
					label Password
					input.form-control(type='password',v-model='password')
				hr
				div.form-group
					button.btn.btn-success(type='button',@click.prevent='create') Create Account
					a.btn.btn-default.pull-right(v-link='{ path:"/session/create" }') Go To Login Page