Welcome to mirror list, hosted at ThFree Co, Russian Federation.

new.html.haml « gitea « import « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f76e9f3f6ed1d7a44a6937a9fb7b41081a5e98e8 (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
- page_title _("Gitea import")
- header_title _("New project"), new_project_path
- add_to_breadcrumbs s_('ProjectsNew|Import project'), new_project_path(anchor: 'import_project')

%h1.page-title.gl-font-size-h-display
  = custom_icon('gitea_logo')
  = _('Import projects from Gitea')

%p
  - link_to_personal_token = link_to(_('personal access token'), 'https://docs.gitea.io/en-us/api-usage/#authentication-via-the-api')
  = _('To get started, please enter your Gitea host URL and a %{link_to_personal_token}.').html_safe % { link_to_personal_token: link_to_personal_token }

= form_tag personal_access_token_import_gitea_path do
  = hidden_field_tag(:namespace_id, params[:namespace_id])
  .form-group.row
    = label_tag :gitea_host_url, _('Gitea host URL'), class: 'col-form-label col-sm-2'
    .col-sm-4
      = text_field_tag :gitea_host_url, nil, placeholder: 'https://gitea.com', class: 'form-control gl-form-input'
  .form-group.row
    = label_tag :personal_access_token, _('Personal access token'), class: 'col-form-label col-sm-2'
    .col-sm-4
      = text_field_tag :personal_access_token, nil, class: 'form-control gl-form-input'
  .form-actions
    = render Pajamas::ButtonComponent.new(type: :submit, variant: :confirm) do
      = _('List your Gitea repositories')