Flow Router URL regex

Hi,

Is it possible to add a route in Flow Router such that, no matter what is put after the regex, it still renders the same template? e.g. if this is my route:

FlowRouter.route('/logins/', {
  action: function() {
BlazeLayout.render("mainLayout", {content: "loginstemplate"});
 }
});

Now if a user enters the URL mysite.com/logins/anything, it should still render mainLayout and loginstemplate. Is this possible?