@extends('master') @section('title') New Note « @stop @section('content')

This is my UI for posting new notes, hopefully you’ll soon be able to use this if your site supports the micropub API.

@if($errors->endpoint->first() != '')

{{ $errors->endpoint->first() }}

@endif @if($errors->indieauth->first() != '')

{{ $errors->indieauth->first() }}

@endif @if($url === null)
IndieAuth
@else

You are authenticated as {{ $url }}, log out.

@endif @include('templates.new-note-form', [ 'micropub' => true, 'action' => route('micropub-client-post') ]) @stop @section('scripts') @stop