@extends('master') @section('title') New Note « Jonny Barnes @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' => '/notes/new', 'id' => 'newnote' ]) @stop @section('scripts') @include('templates.mapbox-links') @stop