Customize django-allauth template -
i've checked questions regarding customizing signup template not luck. best found, suggesting modify form action in own template 1 used original template resulting in this:
<form class="form-horizontal" action="/accounts/signup/?next{{request.path}}" method="post"> there answers suggest either downloading whole project, or templates folder , modifying directly there. time consuming don't feel best solution out there.
with current approach posted above have issues unfortunately still cannot find solution. when go custom signup website (mybesite/register) works great. when dig dipper there 2 main drawbacks:
- in source code action telling use other place - /accounts/signup/ - i'd ride of that
- in case of error in form redirects django-allauth template
is there anyway fix those?
Comments
Post a Comment