fork
Configure Feed
Select the types of activity you want to include in your feed.
the browser-facing portion of osu!
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{{--
2 Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0.
3 See the LICENCE file in the repository root for full licence text.
4--}}
5@extends('master')
6
7@section('content')
8 @include('layout._page_header_v4', ['params' => [
9 'theme' => 'password-reset',
10 ]])
11 <div class="osu-page osu-page--generic-compact">
12 <form
13 action="{{ route('password-reset') }}"
14 class="password-reset js-form-error"
15 data-reload-on-success="1"
16 data-remote
17 data-skip-ajax-error-popup="1"
18 method="POST"
19 >
20 @csrf
21 <input name="_method" value="PUT" type="hidden" />
22 {!! osu_trans('password_reset.started.title', ['username' => e($username)]) !!}
23
24 <div class="password-reset__input-group">
25 <a
26 class="btn-osu-big btn-osu-big--password-reset"
27 href="{{ route('password-reset.resend-mail', ['username' => $username]) }}"
28 data-method="POST"
29 data-remote="1"
30 >
31 {{ osu_trans('password_reset.button.resend') }}
32 </a>
33 </div>
34
35 <input type="hidden" name="username" value="{{ $username }}" />
36
37 <label class="password-reset__input-group">
38 {{ osu_trans('password_reset.started.verification_key') }}
39
40 <input name="key" class="password-reset__input" autofocus>
41
42 <span class="password-reset__error js-form-error--error"></span>
43 </label>
44
45 <label class="password-reset__input-group">
46 {{ osu_trans('password_reset.started.password') }}
47
48 <input type="password" class="js-form-confirmation password-reset__input" name="user[password]">
49
50 <span class="password-reset__error js-form-error--error"></span>
51 </label>
52
53 <label class="password-reset__input-group">
54 {{ osu_trans('password_reset.started.password_confirmation') }}
55
56 <input type="password" class="js-form-confirmation password-reset__input" name="user[password_confirmation]">
57
58 <span class="password-reset__error js-form-error--error"></span>
59 </label>
60
61 <div class="password-reset__input-group">
62 <button class="btn-osu-big btn-osu-big--password-reset">
63 {{ osu_trans('password_reset.button.set') }}
64 </button>
65 </div>
66 </form>
67 </div>
68@endsection