28 lines
1.3 KiB
Text
28 lines
1.3 KiB
Text
- title = _('Bitbucket Server Import')
|
|
- page_title title
|
|
- breadcrumb_title title
|
|
- header_title _("Projects"), root_path
|
|
|
|
%h3.page-title.d-flex
|
|
.gl-display-flex.gl-align-items-center.gl-justify-content-center
|
|
= sprite_icon('bitbucket', css_class: 'gl-mr-2')
|
|
= _('Import repositories from Bitbucket Server')
|
|
|
|
%p
|
|
= _('Enter in your Bitbucket Server URL and personal access token below')
|
|
|
|
= form_tag configure_import_bitbucket_server_path, method: :post do
|
|
.form-group.row
|
|
= label_tag :bitbucket_server_url, 'Bitbucket Server URL', class: 'col-form-label col-md-2'
|
|
.col-md-4
|
|
= text_field_tag :bitbucket_server_url, '', class: 'form-control gl-mr-3', placeholder: _('https://your-bitbucket-server'), size: 40
|
|
.form-group.row
|
|
= label_tag :bitbucket_server_url, 'Username', class: 'col-form-label col-md-2'
|
|
.col-md-4
|
|
= text_field_tag :bitbucket_server_username, '', class: 'form-control gl-mr-3', placeholder: _('username'), size: 40
|
|
.form-group.row
|
|
= label_tag :personal_access_token, 'Password/Personal Access Token', class: 'col-form-label col-md-2'
|
|
.col-md-4
|
|
= password_field_tag :personal_access_token, '', class: 'form-control gl-mr-3', placeholder: _('Personal Access Token'), size: 40
|
|
.form-actions
|
|
= submit_tag _('List your Bitbucket Server repositories'), class: 'btn btn-success'
|