Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cydrobolt/polr.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChaoyi Zha <summermontreal@gmail.com>2017-08-24 04:53:58 +0300
committerGitHub <noreply@github.com>2017-08-24 04:53:58 +0300
commit514d475ed01a1ef9365c258ae51a028941a67f38 (patch)
tree5ce12ee3698d4fbd37a5cae23fd02de56200cd62
parent131b9925c24990261c3afc67994f34656432743e (diff)
Use relative path to avoid HTTPS issues
-rw-r--r--resources/views/signup.blade.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/views/signup.blade.php b/resources/views/signup.blade.php
index 1bba206..58b4aa0 100644
--- a/resources/views/signup.blade.php
+++ b/resources/views/signup.blade.php
@@ -8,7 +8,7 @@
<div class='col-md-6'>
<h2 class='title'>Register</h2>
- <form action='{{route('psignup')}}' method='POST'>
+ <form action='/signup' method='POST'>
Username: <input type='text' name='username' class='form-control form-field' placeholder='Username' />
Password: <input type='password' name='password' class='form-control form-field' placeholder='Password' />
Email: <input type='email' name='email' class='form-control form-field' placeholder='Email' />