summaryrefslogtreecommitdiff
path: root/app/views/import/fogbugz/new.html.haml
blob: 5515fad6f48c98a2171496b8fd06f484c9d867b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
- page_title "FogBugz Import"
- header_title "Projects", root_path
%h3.page-title
  %i.fa.fa-bug
  Import projects from FogBugz
%hr

= form_tag callback_import_fogbugz_path, class: 'form-horizontal' do
  %p
    To get started you enter your FogBugz URL and login information below.
    In the next steps, you'll be able to map users and select the projects
    you want to import.
  .form-group
    = label_tag :uri, 'FogBugz URL', class: 'control-label'
    .col-sm-4
      = text_field_tag :uri, nil, placeholder: 'https://mycompany.fogbugz.com', class: 'form-control'
  .form-group
    = label_tag :email, 'FogBugz Email', class: 'control-label'
    .col-sm-4
      = text_field_tag :email, nil, class: 'form-control'
  .form-group
    = label_tag :password, 'FogBugz Password', class: 'control-label'
    .col-sm-4
      = password_field_tag :password, nil, class: 'form-control'
  .form-actions
    = submit_tag 'Continue to the next step', class: 'btn btn-create'