package
0.0.0-20211212162911-6c9bd3a40a2b
Repository: https://github.com/striversity/glft.git
Documentation: pkg.go.dev

# README

Section 11 - Exercise 02 : Web Greeter

Write a Go application which renders a Web page with an input box. Upon submission, the app will use the submitted user name to render a dynamic page with a greeting for the user.

TODO 1 - Greet the user with a custom message and the server's date and time

If the user enters 'Jane' on the home web page, then the app will reply with something like:

Hi, Jane. Today is Wed, 28 Nov 2018. The current time is 11:05AM.
  • TIP: github.com/striversity/glft/shared/cal provides conventince functions for date and time. Or you can get the same info from the time standard package.

# Structs

No description provided by the author