- Sorry for my broken English at first. - The get_started.page is where we can create a account, right? so remove "#", right? https://github.com/linkedin/indextank-service/blob/master/storefront/urls.py line 21 ``` python #url(r'^get-started/$', 'storefront.views.get_started', name='get_started'), ``` - Change config info in settings.py. - But, when I visit the get_started page in browser, input my mail, click signup, the page would do nothing. In the get_started.html, here just a easy form id "signup": https://github.com/linkedin/indextank-service/blob/master/storefront/templates/get_started.html line > 48 ``` html <form id="signup"> <div class="form_sec"> <div class="input_bg"> <label><span class="none"> </span> <input type="text" emptyvalue="Email" class="empty" name="" id="email" /> </label> </div> <label> <input type="submit" value="SIGN UP" class="signup"/> <span class="none"> </span> </label> <div id="email_error"></div> </div> </form> ``` - However, if u read the views.py code: https://github.com/linkedin/indextank-service/blob/master/storefront/views.py line 290 ``` python if request.is_ajax() and request.method == 'POST': ``` - It seem need AJAX, but I cant find any js file or js code will this AJAX request. - I am a web newbie, not familiar with Django. If I ask stupid question, sorry. Thanks for your reply.
https://github.com/linkedin/indextank-service/blob/master/storefront/urls.py line 21
#url(r'^get-started/$', 'storefront.views.get_started', name='get_started'),In the get_started.html, here just a easy form id "signup":
https://github.com/linkedin/indextank-service/blob/master/storefront/templates/get_started.html line > 48
https://github.com/linkedin/indextank-service/blob/master/storefront/views.py line 290
Thanks for your reply.