2019-01-15 09:22:26 -05:00
|
|
|
Hi <%= sanitize_name(@user.name) %>!
|
2013-05-10 05:18:19 -04:00
|
|
|
|
2019-06-03 20:50:41 -04:00
|
|
|
<% if Gitlab::CurrentSettings.allow_signup? %>
|
|
|
|
Your account has been created successfully.
|
|
|
|
<% else %>
|
2013-08-04 18:04:47 -04:00
|
|
|
The Administrator created an account for you. Now you are a member of the company GitLab application.
|
2019-06-03 20:50:41 -04:00
|
|
|
<% end %>
|
2013-05-10 05:18:19 -04:00
|
|
|
|
2013-01-11 11:53:30 -05:00
|
|
|
login.................. <%= @user.email %>
|
2019-06-03 20:50:41 -04:00
|
|
|
|
2013-06-13 14:06:27 -04:00
|
|
|
<% if @user.created_by_id %>
|
2019-06-03 20:49:20 -04:00
|
|
|
Click here to set your password:
|
|
|
|
<%= edit_password_url(@user, :reset_password_token => @token) %>
|
2015-04-27 00:04:33 -04:00
|
|
|
|
2019-06-03 20:49:20 -04:00
|
|
|
This link is valid for <%= password_reset_token_valid_time %>. After it expires, you can request a new one here:
|
|
|
|
<%= new_user_password_url(user_email: @user.email) %>
|
2013-02-28 12:56:16 -05:00
|
|
|
<% end %>
|