2018-06-13 01:02:41 -04:00
- page_title _("FogBugz Import")
- header_title _("Projects"), root_path
2015-08-04 18:21:12 -04:00
%h3.page-title
%i.fa.fa-bug
2018-06-13 01:02:41 -04:00
= _('Import projects from FogBugz')
2015-08-04 18:21:12 -04:00
%hr
2018-04-12 16:11:22 -04:00
= form_tag callback_import_fogbugz_path do
2015-08-04 18:21:12 -04:00
%p
2018-06-13 01:02:41 -04:00
= _("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.")
2018-04-12 16:11:22 -04:00
.form-group.row
2018-06-13 01:02:41 -04:00
= label_tag :uri, _('FogBugz URL'), class: 'col-form-label col-md-2'
2018-05-31 16:45:13 -04:00
.col-md-4
2015-08-04 18:21:12 -04:00
= text_field_tag :uri, nil, placeholder: 'https://mycompany.fogbugz.com', class: 'form-control'
2018-04-12 16:11:22 -04:00
.form-group.row
2018-06-13 01:02:41 -04:00
= label_tag :email, _('FogBugz Email'), class: 'col-form-label col-md-2'
2018-05-31 16:45:13 -04:00
.col-md-4
2015-08-04 18:21:12 -04:00
= text_field_tag :email, nil, class: 'form-control'
2018-04-12 16:11:22 -04:00
.form-group.row
2018-06-13 01:02:41 -04:00
= label_tag :password, _('FogBugz Password'), class: 'col-form-label col-md-2'
2018-05-31 16:45:13 -04:00
.col-md-4
2015-08-04 18:21:12 -04:00
= password_field_tag :password, nil, class: 'form-control'
.form-actions
2018-09-18 05:58:22 -04:00
= submit_tag _('Continue to the next step'), class: 'btn btn-success'