Add support for creating and listing OFXAccounts
This makes it so that we can add new accounts and show the accounts that we already have. We don't do anything with them yet, but that's okay it was interesting figuring out how to get them set up at all. I'm currently storing the passwords as unencrypted, which I intend to change, but it's going to take some time to research exactly how to encrypt them so that the data is not retrievable by a bad actor with access to the database.
This commit is contained in:
parent
91f89d2cbd
commit
104289418b
5 changed files with 113 additions and 16 deletions
|
@ -8,6 +8,7 @@
|
|||
<input id="username" type="text" name="username" class="form-control"></input>
|
||||
<label for="password">password</label>
|
||||
<input id="password" type="password" name="password" class="form-control"></input>
|
||||
<input class="btn btn-primary" type="submit" value="Log in" class="form-control"></input>
|
||||
<input class="btn btn-primary form-control" type="submit" value="Log in"></input>
|
||||
</div>
|
||||
</form>
|
||||
{% endblock %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue