diff --git a/app/auth/views.py b/app/auth/views.py
index abb1ccff380e44160473d084f4ddf313552f86ff..95dd2fd85df5420793518464a46bae4a77832909 100644
--- a/app/auth/views.py
+++ b/app/auth/views.py
@@ -85,7 +85,7 @@ def resend_confirmation():
     send_email(current_user.email, 'Confirm Your Account', 'auth/email/confirm',
                user=current_user, token=token)
     flash('A new confirmation email has benn sent to you by email.')
-    return redirect(url_for('maind.index'))
+    return redirect(url_for('main.index'))
 
 
 @auth.route('/reset', methods=['GET', 'POST'])