diff options
author | Camil Staps | 2016-09-05 22:30:47 +0200 |
---|---|---|
committer | Camil Staps | 2016-09-05 22:30:47 +0200 |
commit | fc5cef0efddbb1141b0a371108a23fc7f6e8d860 (patch) | |
tree | 8b3e62b50e5f856c57af477a78a51567d6e859f2 /resources/views/contribute.blade.php | |
parent | User creation and authentication (diff) |
Vote on verb suggestions
Diffstat (limited to 'resources/views/contribute.blade.php')
-rw-r--r-- | resources/views/contribute.blade.php | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/resources/views/contribute.blade.php b/resources/views/contribute.blade.php new file mode 100644 index 0000000..4c3b6de --- /dev/null +++ b/resources/views/contribute.blade.php @@ -0,0 +1,35 @@ +@extends('layouts.master') + +@section('master-content') +<p class="lead"> + Thank you for wanting to help out! To expand our database, we are looking for volunteers to enter more verbs. +</p> + +@if(!Auth::check()) + <a class="btn btn-lg btn-primary" href="{{ env('APP_URL') }}contribute?login=yes">Login</a> + <a class="btn btn-lg btn-success" href="{{ env('APP_URL') }}user/create">Sign up</a> +@endif + +<h3>Here's how it works:</h3> + +<ul> + <li>Any user can <em>suggest new verbs</em>.</li> + <li>These have to be <em>peer-reviewed</em> by other contributors.</li> + <li>It has to get <em>five</em> votes to be accepted.</li> + <li>Contributors <em>earn points</em> for all accepted verbs they suggested.</li> + <li>The <em>vote weight</em> is dependent on the number of points a user has.</li> +</ul> + +@if(Auth::check()) + <hr/> + <div class="row"> + <div class="col-lg-6"> + @include('suggestions') + </div> + <div class="col-lg-6"> + @include('suggest') + </div> + </div> +@endif + +@endsection |