stormpath / express-stormpath-sample-project

A sample Express-Stormpath project that showcases how to store profile data in customData.
10 stars 8 forks source link

Profile page doesnt post #11

Open iruslani opened 8 years ago

iruslani commented 8 years ago

Hello all,

Trying to get this working with my heroku app. I'm using ejs instead of jade and on the profile page I have this:

`

We'll never share your color with anyone else.
  <fieldset class="form-group">
    <label for="birthday">Password</label>
    <input type="text" class="form-control" id="birthday" value="<%- user.customData.birthday %>" placeholder="Enter your birthday">
  </fieldset>
  <button type="submit" class="btn btn-primary">Submit</button>
</form>`

But when I click on Submit it doesn't post anything. Should there be an action pointing to the api?

Thanks.