summaryrefslogtreecommitdiff
path: root/app/views/registrations/experience_levels/show.html.haml
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-06-18 11:18:50 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-06-18 11:18:50 +0000
commit8c7f4e9d5f36cff46365a7f8c4b9c21578c1e781 (patch)
treea77e7fe7a93de11213032ed4ab1f33a3db51b738 /app/views/registrations/experience_levels/show.html.haml
parent00b35af3db1abfe813a778f643dad221aad51fca (diff)
downloadgitlab-ce-8c7f4e9d5f36cff46365a7f8c4b9c21578c1e781.tar.gz
Add latest changes from gitlab-org/gitlab@13-1-stable-ee
Diffstat (limited to 'app/views/registrations/experience_levels/show.html.haml')
-rw-r--r--app/views/registrations/experience_levels/show.html.haml28
1 files changed, 28 insertions, 0 deletions
diff --git a/app/views/registrations/experience_levels/show.html.haml b/app/views/registrations/experience_levels/show.html.haml
new file mode 100644
index 00000000000..24b87790e18
--- /dev/null
+++ b/app/views/registrations/experience_levels/show.html.haml
@@ -0,0 +1,28 @@
+- page_title _('What’s your experience level?')
+
+.gl-display-flex.gl-flex-direction-column.gl-align-items-center
+ = image_tag 'learn-gitlab-avatar.jpg', width: '90'
+
+ %h2.gl-text-center.gl-mt-3.gl-mb-3= _('Hello there')
+ %p.gl-text-center.gl-font-lg.gl-mb-6= _('Welcome to the guided GitLab tour')
+
+ %h3.gl-text-center.gl-font-lg.gl-mt-6.gl-mb-0= _('What describes you best?')
+
+ .card-deck.gl-mt-6
+ .card
+ .card-body.gl-display-flex.gl-py-8.gl-pr-5.gl-pl-7
+ .gl-align-self-center.gl-pr-6
+ = image_tag 'novice.svg', width: '78', height: '78', alt: ''
+ %div
+ %p.gl-font-lg.gl-font-weight-bold.gl-mb-2= _('Novice')
+ %p= _('I’m not very familiar with the basics of project management and DevOps.')
+ = link_to _('Show me everything'), users_sign_up_experience_level_path(experience_level: :novice, namespace_path: params[:namespace_path]), method: :patch, class: 'stretched-link'
+
+ .card
+ .card-body.gl-display-flex.gl-py-8.gl-pr-5.gl-pl-7
+ .gl-align-self-center.gl-pr-6
+ = image_tag 'experienced.svg', width: '78', height: '78', alt: ''
+ %div
+ %p.gl-font-lg.gl-font-weight-bold.gl-mb-2= _('Experienced')
+ %p= _('I’m familiar with the basics of project management and DevOps.')
+ = link_to _('Show me more advanced stuff'), users_sign_up_experience_level_path(experience_level: :experienced, namespace_path: params[:namespace_path]), method: :patch, class: 'stretched-link'