Login System Tutorial Part 1 - Build A Project (Current Progress) ================================================================= `Back to Previous Page`_ .. _Back to Previous Page: https://uadmin-docs.readthedocs.io/en/latest/login_system_views/tutorial/part1.html Structure: * `main.go`_ main.go ------- `Back to Top`_ .. _Back To Top: https://uadmin-docs.readthedocs.io/en/latest/login_system_views/tutorial/full_code/part1.html#login-system-tutorial-part-1-build-a-project-current-progress .. code-block:: go package main import ( "net/http" "github.com/uadmin/uadmin" ) func main() { // Assign RootURL value as "/admin/" and Site Name as "Login System" // NOTE: This code works only if database does not exist yet. uadmin.RootURL = "/admin/" uadmin.SiteName = "Login System" // Run the server uadmin.StartServer() }