## authentication ### Objectives The goal of this project is to implement, into your forum, new ways of authentication. You have to be able to register and to login using at least Google and Github authentication tools. Some examples of authentication means are: - Facebook - GitHub - Google ### Instructions - Your project must have implemented at least the two authentication examples given. - Your project must be written in **Go**. - The code must respect the [**good practices**](../../good-practices/README.md). ### Allowed packages - All [standard go](https://golang.org/pkg/) packages are allowed. - github.com/mattn/go-sqlite3 - golang.org/x/crypto/bcrypt - github.com/satori/go.uuid This project will help you learn about: - Sessions and cookies. - Protecting routes.