doctype html
html(lang="en")
  head
    title Account Recovery | Anvil Connect

    link(rel='stylesheet', href='/stylesheets/app.css')
    link(rel='stylesheet', href='//fonts.googleapis.com/css?family=Roboto:400,100,100italic,400italic,700,700italic|Raleway:400,100,600,300|Playfair+Display+SC:900,400')
  body

    .anvilform
      img.logo(src='/images/anvil.svg', alt='Anvil Connect')

      .panel
        h2 Reset your password
        if error
          .error= error
        else
          if validationError
            .error= validationError
          p
            | Enter a new password for your account:
          form(method='POST')
            input(name='password', type='password', placeholder='New password')
            input(name='confirmPassword', type='password', placeholder='Confirm password')
            input.callout.full(type='submit', value='Reset password')
