20 lines
592 B
Plaintext
20 lines
592 B
Plaintext
package sources
|
|
|
|
import (
|
|
"git.jamestombleson.com/jtom38/newsbot-portal/internal/models"
|
|
"git.jamestombleson.com/jtom38/newsbot-portal/internal/views/bulma"
|
|
"git.jamestombleson.com/jtom38/newsbot-portal/internal/views/bulma/form"
|
|
"git.jamestombleson.com/jtom38/newsbot-portal/internal/views/layout"
|
|
)
|
|
|
|
templ Add(model models.AddSourcePayloadModel) {
|
|
@layout.WithTemplate() {
|
|
<h2>New Source</h2>
|
|
<p>At this time only direct RSS links are allowed to be provided</p>
|
|
@form.New("/sources/add") {
|
|
@form.Input("", "url", "text")
|
|
@form.Submit("Submit", bulma.ColorPrimary)
|
|
}
|
|
}
|
|
}
|