Front-end improvements to take it on live

master
Uğur Arıcı 4 years ago
parent 67cc77ddf6
commit 708764ab95
  1. 2
      public/js/app.js
  2. 2
      public/mix-manifest.json
  3. 13
      resources/js/components/DonationCard.vue
  4. 18
      resources/views/emails/successfulpayment.blade.php
  5. 9
      resources/views/emails/user/created.blade.php
  6. 10
      resources/views/layouts/app.blade.php
  7. 2
      routes/web.php

2
public/js/app.js vendored

File diff suppressed because one or more lines are too long

@ -1,4 +1,4 @@
{ {
"/js/app.js": "/js/app.js?id=98f1c6e677e72c69fbc4", "/js/app.js": "/js/app.js?id=7ae1ff303438afdbd8bb",
"/css/app.css": "/css/app.css?id=36412c9f34a08f26af3c" "/css/app.css": "/css/app.css?id=36412c9f34a08f26af3c"
} }

@ -125,7 +125,6 @@
class="form-control" class="form-control"
:class="{'is-invalid':1==0}" :class="{'is-invalid':1==0}"
name="first_name" name="first_name"
value="John"
required required
/> />
<span class="invalid-feedback" role="alert" v-if="1==0"> <span class="invalid-feedback" role="alert" v-if="1==0">
@ -143,7 +142,6 @@
class="form-control" class="form-control"
:class="{'is-invalid':1==0}" :class="{'is-invalid':1==0}"
name="last_name" name="last_name"
value="Doe"
required required
/> />
<span class="invalid-feedback" role="alert" v-if="1==0"> <span class="invalid-feedback" role="alert" v-if="1==0">
@ -176,7 +174,6 @@
name="email" name="email"
required required
autocomplete="email" autocomplete="email"
value="john@doe.comi"
/> />
</div> </div>
</div> </div>
@ -199,7 +196,6 @@
class="form-control" class="form-control"
:class="{'is-invalid':1==0}" :class="{'is-invalid':1==0}"
name="card_holder_name" name="card_holder_name"
value="John Doe"
required required
/> />
<span class="invalid-feedback" role="alert" v-if="1==0"> <span class="invalid-feedback" role="alert" v-if="1==0">
@ -222,7 +218,6 @@
maxlength="16" maxlength="16"
autocomplete="off" autocomplete="off"
placeholder="################" placeholder="################"
value="5400010000000004"
v-cardformat:restrictNumeric v-cardformat:restrictNumeric
/> />
<span class="invalid-feedback" role="alert" v-if="1==0"> <span class="invalid-feedback" role="alert" v-if="1==0">
@ -248,7 +243,6 @@
placeholder="MM" placeholder="MM"
minlength="2" minlength="2"
maxlength="2" maxlength="2"
value="12"
v-cardformat:restrictNumeric v-cardformat:restrictNumeric
/> />
</div> </div>
@ -264,7 +258,6 @@
placeholder="YY" placeholder="YY"
minlength="2" minlength="2"
maxlength="2" maxlength="2"
value="30"
v-cardformat:restrictNumeric v-cardformat:restrictNumeric
/> />
</div> </div>
@ -284,7 +277,6 @@
placeholder="***" placeholder="***"
minlength="3" minlength="3"
maxlength="4" maxlength="4"
value="123"
v-cardformat:restrictNumeric v-cardformat:restrictNumeric
/> />
</div> </div>
@ -308,7 +300,6 @@
class="form-control" class="form-control"
:class="{'is-invalid':1==0}" :class="{'is-invalid':1==0}"
name="billing_contact_name" name="billing_contact_name"
value="John Doe"
required required
/> />
<span class="invalid-feedback" role="alert" v-if="1==0"> <span class="invalid-feedback" role="alert" v-if="1==0">
@ -326,7 +317,6 @@
class="form-control" class="form-control"
:class="{'is-invalid':1==0}" :class="{'is-invalid':1==0}"
name="billing_address" name="billing_address"
value="Freedom St. 18/7"
required required
/> />
<span class="invalid-feedback" role="alert" v-if="1==0"> <span class="invalid-feedback" role="alert" v-if="1==0">
@ -344,7 +334,6 @@
class="form-control" class="form-control"
:class="{'is-invalid':1==0}" :class="{'is-invalid':1==0}"
name="billing_city" name="billing_city"
value="Istanbul"
required required
/> />
<span class="invalid-feedback" role="alert" v-if="1==0"> <span class="invalid-feedback" role="alert" v-if="1==0">
@ -362,7 +351,6 @@
class="form-control" class="form-control"
:class="{'is-invalid':1==0}" :class="{'is-invalid':1==0}"
name="billing_country" name="billing_country"
value="Turkey"
required required
/> />
<span class="invalid-feedback" role="alert" v-if="1==0"> <span class="invalid-feedback" role="alert" v-if="1==0">
@ -383,7 +371,6 @@
class="form-control" class="form-control"
:class="{'is-invalid':1==0}" :class="{'is-invalid':1==0}"
name="billing_zipcode" name="billing_zipcode"
value
/> />
<span class="invalid-feedback" role="alert" v-if="1==0"> <span class="invalid-feedback" role="alert" v-if="1==0">
<strong>Sample error</strong> <strong>Sample error</strong>

@ -1,15 +1,17 @@
@component('mail::message') @component('mail::message')
# Thank you for your donation! # Thank you for your donation!
We received your {{$donation->amount}} {{$donation->currency}} USD donation. We received your {{$donation->amount}} {{$donation->currency}} donation.
Name: {{$donation->first_name}} {{$donation->last_name}} - Name: {{$donation->first_name}} {{$donation->last_name}}
- Amount: {{$donation->amount}} {{$donation->currency}}
Amount: {{$donation->amount}} {{$donation->currency}} - Transaction Date: {{$donation->created_at}}
- Frequency: {{$donation->frequency}}
Transaction Date: {{$donation->created_at}} @if($donation->next_payment_at)
- Next Payment Date: {{$donation->next_payment_at}}
Next Payment Date: {{$donation->next_payment_at}} @endif
Your donations is tax deductible only in Republic of Turkey
Özgür Yazılım Derneği is a registered association in İstanbul, Turkey with the number 34-242-113
@endcomponent @endcomponent

@ -1,14 +1,13 @@
@component('mail::message') @component('mail::message')
# Information # Your account created
Your account created for OYD Donation System Your account created for OYD Donation System
Here are your credentials.
E-Mail: {{$user->email}} Here are your credentials:
Password: {{$password}} - E-Mail: {{$user->email}}
- Password: {{$password}}
You can view your past and active donations by logging into the system. You can view your past and active donations by logging into the system.
@endcomponent @endcomponent

@ -1,5 +1,6 @@
<!doctype html> <!doctype html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
@ -17,6 +18,7 @@
<!-- Styles --> <!-- Styles -->
<link href="{{ mix('css/app.css') }}" rel="stylesheet"> <link href="{{ mix('css/app.css') }}" rel="stylesheet">
</head> </head>
<body> <body>
<div id="app"> <div id="app">
<nav class="navbar navbar-expand-md navbar-dark bg-primary shadow-sm"> <nav class="navbar navbar-expand-md navbar-dark bg-primary shadow-sm">
@ -41,7 +43,7 @@
<a class="nav-link" href="https://oyd.org.tr" target="_blank">oyd.org.tr</a> <a class="nav-link" href="https://oyd.org.tr" target="_blank">oyd.org.tr</a>
</li> </li>
<!-- Authentication Links --> <!-- Authentication Links -->
<?php /**
@guest @guest
<li class="nav-item"> <li class="nav-item">
<a class="nav-link" href="{{ route('login') }}">{{ __('Login') }}</a> <a class="nav-link" href="{{ route('login') }}">{{ __('Login') }}</a>
@ -58,8 +60,7 @@
</a> </a>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdown"> <div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="{{ route('logout') }}" <a class="dropdown-item" href="{{ route('logout') }}" onclick="event.preventDefault();
onclick="event.preventDefault();
document.getElementById('logout-form').submit();"> document.getElementById('logout-form').submit();">
{{ __('Logout') }} {{ __('Logout') }}
</a> </a>
@ -70,8 +71,6 @@ document.getElementById('logout-form').submit();">
</div> </div>
</li> </li>
@endguest @endguest
*/
?>
</ul> </ul>
</div> </div>
</div> </div>
@ -87,4 +86,5 @@ document.getElementById('logout-form').submit();">
</div> </div>
</div> </div>
</body> </body>
</html> </html>

@ -13,7 +13,7 @@ use Illuminate\Support\Facades\Route;
| |
*/ */
Auth::routes(); Auth::routes(['register' => false]);
Route::get('/', 'DonationController@index')->name('donation.form'); Route::get('/', 'DonationController@index')->name('donation.form');
Route::post('/make-donation', 'DonationController@donate')->name('donation.make'); Route::post('/make-donation', 'DonationController@donate')->name('donation.make');

Loading…
Cancel
Save